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 "Activity"
|
2015-09-25 12:07:36 +05:30
|
|
|
xml.link href: dashboard_projects_url(format: :atom, private_token: current_user.try(:private_token)), rel: "self", type: "application/atom+xml"
|
|
|
|
xml.link href: dashboard_projects_url, rel: "alternate", type: "text/html"
|
|
|
|
xml.id dashboard_projects_url
|
2016-04-02 18:10:28 +05:30
|
|
|
xml.updated @events[0].updated_at.xmlschema if @events[0]
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
xml << render(partial: 'events/event', collection: @events) if @events.any?
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|