summaryrefslogtreecommitdiff
path: root/app/views/projects/issues/index.atom.builder
blob: 6566866be829ea7b2d00d6c4d79a3c9ab2bf46a6 (plain)
1
2
3
4
5
6
7
8
9
# 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