]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/notes/_note.xml.builder
Return "action" of a note comment in the xml formatting to
[rails.git] / app / views / notes / _note.xml.builder
index 42e69fec2a7def80f70aa3a47d98b274a0d33ee1..ee9570205ce8e79d18e982aaea5487831cb51090 100644 (file)
@@ -12,7 +12,7 @@ xml.note("lon" => note.lon, "lat" => note.lat) do
   xml.date_created note.created_at
   xml.status note.status
 
-  if note.status == "closed"
+  if note.closed?
     xml.date_closed note.closed_at
   end
 
@@ -27,6 +27,8 @@ xml.note("lon" => note.lon, "lat" => note.lat) do
           xml.user_url user_url(:display_name => comment.author.display_name, :host => SERVER_URL)
         end
 
+        xml.action comment.event
+
         if comment.body
           xml.text comment.body.to_text
           xml.html comment.body.to_html