2017-09-10 17:25:29 +05:30
|
|
|
xml.title "#{@project.name} issues"
|
2018-06-27 16:04:02 +05:30
|
|
|
xml.link href: url_for(safe_params), rel: "self", type: "application/atom+xml"
|
2017-09-10 17:25:29 +05:30
|
|
|
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?
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
xml << render(partial: 'issues/issue', collection: @issues) if @issues.reorder(nil).any?
|