summaryrefslogtreecommitdiff
path: root/app/views/groups/issues.atom.builder
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/groups/issues.atom.builder')
-rw-r--r--app/views/groups/issues.atom.builder5
1 files changed, 1 insertions, 4 deletions
diff --git a/app/views/groups/issues.atom.builder b/app/views/groups/issues.atom.builder
index a6eb9abada6..c19671295af 100644
--- a/app/views/groups/issues.atom.builder
+++ b/app/views/groups/issues.atom.builder
@@ -6,8 +6,5 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://sear
xml.id issues_group_url
xml.updated @issues.first.created_at.xmlschema if @issues.any?
- @issues.each do |issue|
- issue_to_atom(xml, issue)
- end
+ xml << render(partial: 'issues/issue', collection: @issues) if @issues.any?
end
-