X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/550c4a3a45814fde5c809334c85f1ebc47659a82..f7367baa6b6091df3eabbe8b7a4b99e3fa314743:/app/views/api/notes/_note.xml.builder diff --git a/app/views/api/notes/_note.xml.builder b/app/views/api/notes/_note.xml.builder index adb4e6a52..0e5ad0007 100644 --- a/app/views/api/notes/_note.xml.builder +++ b/app/views/api/notes/_note.xml.builder @@ -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