summaryrefslogtreecommitdiff
path: root/app/views/projects/tags/index.atom.builder
blob: b9b58b7beaa196ebbdab40f74454cac67017aec9 (plain)
1
2
3
4
5
6
7
xml.title   "#{@project.name} tags"
xml.link    href: project_tags_url(@project, @ref, rss_url_options), rel: 'self', type: 'application/atom+xml'
xml.link    href: project_tags_url(@project, @ref), rel: 'alternate', type: 'text/html'
xml.id      project_tags_url(@project, @ref)
xml.updated @releases.first.updated_at.xmlschema if @releases.any?

xml << render(partial: 'tag', collection: @tags) if @tags.any?