]> 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 f252a0dfc41b930c4e00e4aae0503f3eebe14f78..ce9ddb4bfc8c6a122355baeac9fe97c02f7e905b 100644 (file)
@@ -16,8 +16,8 @@ json.properties do
 
   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