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: 61346884346e0935ef38291a7c34345c9a6db0aa (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: namespace_project_issues_url(@project.namespace, @project), rel: "alternate", type: "text/html"
xml.id      namespace_project_issues_url(@project.namespace, @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?