]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/notes/_note.json.jsonify
bring back icon for help questions section.:
[rails.git] / app / views / notes / _note.json.jsonify
index 985bcf79c6f8f7126ddecfbf466e165ab6ae0f91..74ff5ccec621da2a1d38ba0ba129ce30b4c7f43a 100644 (file)
@@ -8,11 +8,17 @@ end
 json.properties do
   json.id note.id
   json.url note_url(note, :format => params[:format])
 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.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
 
   json.comments(note.comments) do |comment|
     json.date comment.created_at