X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ba5107ebb543a396fc78069c75c431e4d3887ee1..9477d7a65e03b895a8d30a4586449e76c1ea4758:/app/views/notes/_note.json.jsonify?ds=sidebyside diff --git a/app/views/notes/_note.json.jsonify b/app/views/notes/_note.json.jsonify index ce9ddb4bf..5724dfd54 100644 --- a/app/views/notes/_note.json.jsonify +++ b/app/views/notes/_note.json.jsonify @@ -2,7 +2,7 @@ json.type "Feature" json.geometry do json.type "Point" - json.coordinates [ note.lon, note.lat ] + json.coordinates [ note.lon, note.lat ] end json.properties do @@ -16,8 +16,13 @@ json.properties do json.comments(note.comments) do |comment| json.date comment.created_at - json.uid comment.author.id unless comment.author.nil? - json.user comment.author.display_name unless comment.author.nil? + + if comment.author + json.uid comment.author.id + json.user comment.author.display_name + json.user_url user_url(:display_name => comment.author.display_name) + end + json.action comment.event json.text comment.body unless comment.body.nil? end