X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0d3a9ed9cb47ce3b89ea9eaffbb589f9a9ff6d22..3b75e9241507c0672dabaec44ecb83148df979b6:/app/views/notes/_note.json.jsonify diff --git a/app/views/notes/_note.json.jsonify b/app/views/notes/_note.json.jsonify index ba9ccd944..b96439922 100644 --- a/app/views/notes/_note.json.jsonify +++ b/app/views/notes/_note.json.jsonify @@ -2,21 +2,38 @@ json.type "Feature" json.geometry do json.type "Point" - json.coordinates [ note.lon, note.lat ] + json.coordinates [ note.lon.to_f, note.lat.to_f ] end json.properties do json.id note.id + json.url note_url(note, :format => params[:format]) + + if note.closed? + json.reopen_url reopen_note_url(note, :format => params[:format]) + else + json.comment_url comment_note_url(note, :format => params[:format]) + json.close_url close_note_url(note, :format => params[:format]) + end + 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.closed_at note.closed_at if note.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 + + 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, :only_path => false) + end + json.action comment.event - json.text comment.body unless comment.body.nil? + + if comment.body + json.text comment.body.to_text + json.html comment.body.to_html + end end end