Welcome to mirror list, hosted at ThFree Co, Russian Federation.

show.atom.builder « dashboard « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da631ecb33e00f01a6f08002da08d78b8f47464c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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?}"
  xml.link    href: dashboard_url(:atom), rel: "self", type: "application/atom+xml"
  xml.link    href: dashboard_url, rel: "alternate", type: "text/html"
  xml.id      projects_url
  xml.updated @events.maximum(:updated_at).strftime("%Y-%m-%dT%H:%M:%SZ") if @events.any?

  @events.each do |event|
    event_to_atom(xml, event)
  end
end