2012-10-02 13:42:15 -04:00
|
|
|
xml.instruct!
|
|
|
|
xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do
|
2016-05-18 05:14:53 -04:00
|
|
|
xml.title "#{@group.name} issues"
|
|
|
|
xml.link href: issues_group_url(format: :atom, private_token: current_user.try(:private_token)), rel: "self", type: "application/atom+xml"
|
|
|
|
xml.link href: issues_group_url, rel: "alternate", type: "text/html"
|
|
|
|
xml.id issues_group_url
|
2016-06-10 09:22:50 -04:00
|
|
|
xml.updated @issues.first.created_at.xmlschema if @issues.reorder(nil).any?
|
2012-10-02 13:42:15 -04:00
|
|
|
|
2016-06-10 09:22:50 -04:00
|
|
|
xml << render(partial: 'issues/issue', collection: @issues) if @issues.reorder(nil).any?
|
2012-10-02 13:42:15 -04:00
|
|
|
end
|