debian-mirror-gitlab/app/views/dashboard/show.atom.builder

13 lines
545 B
Text
Raw Normal View History

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
xml.title "Dashboard feed#{" - #{current_user.name}" if current_user.name.present?}"
2015-04-26 12:48:37 +05:30
xml.link href: dashboard_url(:atom), rel: "self", type: "application/atom+xml"
xml.link href: dashboard_url, rel: "alternate", type: "text/html"
2014-09-02 18:07:02 +05:30
xml.id projects_url
xml.updated @events.maximum(:updated_at).strftime("%Y-%m-%dT%H:%M:%SZ") if @events.any?
@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