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

show.atom.builder « users « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e95814875f1baac535216840d15f8961ee483000 (plain)
1
2
3
4
5
6
7
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]

xml << render(@events) if @events.any?