2012-06-01 02:42:02 -04:00
|
|
|
xml.instruct!
|
2014-12-31 15:05:38 -05:00
|
|
|
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
|
2015-04-21 11:03:23 -04:00
|
|
|
xml.title "Activity"
|
2017-02-28 15:50:57 -05:00
|
|
|
xml.link href: dashboard_projects_url(rss_url_options), rel: "self", type: "application/atom+xml"
|
2015-09-08 09:49:20 -04:00
|
|
|
xml.link href: dashboard_projects_url, rel: "alternate", type: "text/html"
|
|
|
|
xml.id dashboard_projects_url
|
2016-01-26 05:54:57 -05:00
|
|
|
xml.updated @events[0].updated_at.xmlschema if @events[0]
|
2012-06-01 02:42:02 -04:00
|
|
|
|
2016-05-21 19:02:49 -04:00
|
|
|
xml << render(partial: 'events/event', collection: @events) if @events.any?
|
2012-06-01 02:42:02 -04:00
|
|
|
end
|