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
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, :host => SERVER_URL)
+ json.user_url user_url(:display_name => comment.author.display_name, :only_path => false)
end
json.action comment.event