10 lines
552 B
Ruby
10 lines
552 B
Ruby
xml.instruct!
|
|
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
|
|
xml.title "Activity"
|
|
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
|
|
xml.updated @events[0].updated_at.xmlschema if @events[0]
|
|
|
|
xml << render(partial: 'events/event', collection: @events) if @events.any?
|
|
end
|