X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/5efe07f164ae62bd758a24c571b8b2f6089ed696..19a9298855028b3edb95428d34470f45c92ce8d9:/app/views/notes/_note.xml.builder?ds=sidebyside diff --git a/app/views/notes/_note.xml.builder b/app/views/notes/_note.xml.builder index 2b978e325..fb6738aaa 100644 --- a/app/views/notes/_note.xml.builder +++ b/app/views/notes/_note.xml.builder @@ -12,9 +12,7 @@ xml.note("lon" => note.lon, "lat" => note.lat) do xml.date_created note.created_at xml.status note.status - if note.closed? - xml.date_closed note.closed_at - end + xml.date_closed note.closed_at if note.closed? xml.comments do note.comments.each do |comment| @@ -27,6 +25,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