summaryrefslogtreecommitdiff
path: root/app/views/users/show.atom.builder
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?