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

index.atom.builder « tags « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 68d51ebc89c25ab57b6f491e375c9f8d01c37d04 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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?