openstreetmap-website/app/views/api/notes/_note.xml.builder
Andy Allan f7367baa6b Rename api_notes resource to avoid conflict with non-API resource
This allows using e.g. note_path for notes#show in the future.
2023-01-25 19:01:57 +00:00

37 lines
998 B
Ruby

xml.note("lon" => note.lon, "lat" => note.lat) do
xml.id note.id
xml.url api_note_url(note, :format => params[:format])
if note.closed?
xml.reopen_url reopen_api_note_url(note, :format => params[:format])
else
xml.comment_url comment_api_note_url(note, :format => params[:format])
xml.close_url close_api_note_url(note, :format => params[:format])
end
xml.date_created note.created_at
xml.status note.status
xml.date_closed note.closed_at if note.closed?
xml.comments do
note.comments.each do |comment|
xml.comment do
xml.date comment.created_at
if comment.author
xml.uid comment.author.id
xml.user comment.author.display_name
xml.user_url user_url(:display_name => comment.author.display_name, :only_path => false)
end
xml.action comment.event
if comment.body
xml.text comment.body.to_text
xml.html comment.body.to_html
end
end
end
end
end