X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9477d7a65e03b895a8d30a4586449e76c1ea4758..0d01d06f224c7c7606d39862150d132c3fe2590b:/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 5724dfd54..74ff5ccec 100644
--- a/app/views/notes/_note.json.jsonify
+++ b/app/views/notes/_note.json.jsonify
@@ -8,11 +8,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])
+
+ 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.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
@@ -20,10 +26,14 @@ json.properties do
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)
+ json.user_url user_url(:display_name => comment.author.display_name, :host => SERVER_URL)
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