]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/api/notes/index.xml.builder
Simplify partial rendering when the partial is named after the model
[rails.git] / app / views / api / notes / index.xml.builder
index 286b1e1ccecd0b8513e77d41bc442aff826e21a1..ebb026e651396a5d8263e1a824feccbbe5023c13 100644 (file)
@@ -1,5 +1,5 @@
 xml.instruct!
 
 xml.osm(OSM::API.new.xml_root_attributes) do |osm|
-  osm << (render(:partial => "note", :collection => @notes) || "")
+  osm << (render(@notes) || "")
 end