debian-mirror-gitlab/app/views/groups/issues.atom.builder

8 lines
385 B
Text
Raw Normal View History

2017-09-10 17:25:29 +05:30
xml.title "#{@group.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: issues_group_url, rel: "alternate", type: "text/html"
xml.id issues_group_url
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?