2014-09-02 18:07:02 +05:30
|
|
|
xml.instruct!
|
|
|
|
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
|
2015-09-11 14:41:01 +05:30
|
|
|
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)
|
2016-01-14 18:37:52 +05:30
|
|
|
xml.updated @events.latest_update_time.xmlschema if @events.any?
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
@events.each do |event|
|
2015-04-26 12:48:37 +05:30
|
|
|
event_to_atom(xml, event)
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|