mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 05:36:07 +10:00
By simply loading the first event from the already sorted set we save ourselves extra (slow) queries just to get the latest update timestamp. This removes the need for Event.latest_update_time and significantly reduces the time needed to build an Atom feed. Fixes gitlab-org/gitlab-ce#12415
13 lines
472 B
Ruby
13 lines
472 B
Ruby
xml.instruct!
|
|
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
|
|
xml.title "#{@user.name} activity"
|
|
xml.link href: user_url(@user, :atom), rel: "self", type: "application/atom+xml"
|
|
xml.link href: user_url(@user), rel: "alternate", type: "text/html"
|
|
xml.id user_url(@user)
|
|
xml.updated @events[0].updated_at.xmlschema if @events[0]
|
|
|
|
@events.each do |event|
|
|
event_to_atom(xml, event)
|
|
end
|
|
end
|