summaryrefslogtreecommitdiff
path: root/app/views/groups/show.atom.builder
blob: b68bf444d27f5e0385dac03ba607d15ff1cd60e2 (plain)
1
2
3
4
5
6
7
8
9
10
xml.instruct!
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
  xml.title   "#{@group.name} activity"
  xml.link    href: group_url(@group, format: :atom, private_token: current_user.try(:private_token)), rel: "self", type: "application/atom+xml"
  xml.link    href: group_url(@group), rel: "alternate", type: "text/html"
  xml.id      group_url(@group)
  xml.updated @events[0].updated_at.xmlschema if @events[0]

  xml << render(@events) if @events.any?
end