X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/80f48e812f94e2d430f83b96183f93df729572d8..d74d4f8d195673250c3f2e841d28f185d74d8849:/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 985bcf79c..f8872c717 100644 --- a/app/views/notes/_note.json.jsonify +++ b/app/views/notes/_note.json.jsonify @@ -8,8 +8,14 @@ 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"