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

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

# rubocop: disable CodeReuse/ActiveRecord
xml.title   "#{@project.name} issues"
xml.link    href: url_for(safe_params), rel: "self", type: "application/atom+xml"
xml.link    href: project_issues_url(@project), rel: "alternate", type: "text/html"
xml.id      project_issues_url(@project)
xml.updated @issues.first.updated_at.xmlschema if @issues.reorder(nil).any?

xml << render(partial: 'issues/issue', collection: @issues) if @issues.reorder(nil).any?
# rubocop: enable CodeReuse/ActiveRecord