]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/api/notes/_note.xml.builder
Rename api_notes resource to avoid conflict with non-API resource
[rails.git] / app / views / api / notes / _note.xml.builder
index adb4e6a5233350f7cb29b477ab283ee849886b3b..0e5ad0007e6237abcc80e0c8917f0fc2eac2c16e 100644 (file)
@@ -1,12 +1,12 @@
 xml.note("lon" => note.lon, "lat" => note.lat) do
   xml.id note.id
-  xml.url note_url(note, :format => params[:format])
+  xml.url api_note_url(note, :format => params[:format])
 
   if note.closed?
-    xml.reopen_url reopen_note_url(note, :format => params[:format])
+    xml.reopen_url reopen_api_note_url(note, :format => params[:format])
   else
-    xml.comment_url comment_note_url(note, :format => params[:format])
-    xml.close_url close_note_url(note, :format => params[:format])
+    xml.comment_url comment_api_note_url(note, :format => params[:format])
+    xml.close_url close_api_note_url(note, :format => params[:format])
   end
 
   xml.date_created note.created_at