Commit 3f98525f authored by Valery Sizov's avatar Valery Sizov

[Multiple issue assignees] Fix atom feed

parent 2fd03127
......@@ -23,10 +23,12 @@ xml.entry do
end
end
if issue.assignee
xml.assignee do
xml.name issue.assignee.name
xml.email issue.assignee_public_email
if issue.assignees.any?
xml.assignees do
issue.assignees.each do |assignee|
xml.name ssignee.name
xml.email assignee.assignee_public_email
end
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment