]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/notes/_note.json.jsonify
Make user links in note API responses use the main server name
[rails.git] / app / views / notes / _note.json.jsonify
index 5724dfd540fc0392d101544e2079927c4e358b23..985bcf79c6f8f7126ddecfbf466e165ab6ae0f91 100644 (file)
@@ -20,10 +20,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