summaryrefslogtreecommitdiff
path: root/app/views/projects/issues/index.atom.builder
blob: 4029926f373dcb286cc207dfcc1f85e7c3f1be90 (plain)
1
2
3
4
5
6
7
xml.title   "#{@project.name} issues"
xml.link    href: url_for(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?