]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/notes/_note.json.jsonify
Remove the author_name field from notes
[rails.git] / app / views / notes / _note.json.jsonify
index ba9ccd944e663707cec48978b2b180a7ad549e4d..ce9ddb4bfc8c6a122355baeac9fe97c02f7e905b 100644 (file)
@@ -7,15 +7,17 @@ end
 
 json.properties do
   json.id note.id
+  json.url note_url(note, :format => params[:format])
+  json.comment_url comment_note_url(note, :format => params[:format])
+  json.close_url close_note_url(note, :format => params[:format])
   json.date_created note.created_at
-  json.nearby  note.nearby_place
   json.status note.status
   json.closed_at note.closed_at if note.status == "closed"
 
   json.comments(note.comments) do |comment|
     json.date comment.created_at
-    json.uid comment.author_id unless comment.author_id.nil?
-    json.user comment.author_name
+    json.uid comment.author.id unless comment.author.nil?
+    json.user comment.author.display_name unless comment.author.nil?
     json.action comment.event
     json.text comment.body unless comment.body.nil?
   end