json.geometry do
json.type "Point"
- json.coordinates [ note.lon, note.lat ]
+ json.coordinates [ note.lon, note.lat ]
end
json.properties do
json.comments(note.comments) do |comment|
json.date comment.created_at
- json.uid comment.author_id unless comment.author_id.nil?
- json.user comment.author_name
+
+ 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)
+ end
+
json.action comment.event
json.text comment.body unless comment.body.nil?
end