summaryrefslogtreecommitdiff
path: root/app/views/groups/show.atom.builder
blob: 5cc0f5e1d2ede8423f88ce2acb6f70827a16260c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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.latest_update_time.xmlschema if @events.any?

  @events.each do |event|
    event_to_atom(xml, event)
  end
end