2012-06-01 02:42:02 -04:00
|
|
|
xml.instruct!
|
2014-12-04 15:14:20 -05:00
|
|
|
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlnsmedia" => "http://search.yahoo.com/mrss/" do
|
2012-06-01 02:42:02 -04:00
|
|
|
xml.title "Dashboard feed#{" - #{current_user.name}" if current_user.name.present?}"
|
2014-12-04 15:14:20 -05:00
|
|
|
xml.link href: dashboard_url(:atom), rel: "self", type: "application/atom+xml"
|
|
|
|
xml.link href: dashboard_url, rel: "alternate", type: "text/html"
|
2012-06-01 02:42:02 -04:00
|
|
|
xml.id projects_url
|
|
|
|
xml.updated @events.maximum(:updated_at).strftime("%Y-%m-%dT%H:%M:%SZ") if @events.any?
|
|
|
|
|
|
|
|
@events.each do |event|
|
2014-12-04 15:14:20 -05:00
|
|
|
event_to_atom(xml, event)
|
2012-06-01 02:42:02 -04:00
|
|
|
end
|
|
|
|
end
|