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

12 lines
513 B
Text
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2017-09-10 17:25:29 +05:30
xml.title "#{current_user.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_dashboard_url, rel: "alternate", type: "text/html"
xml.id issues_dashboard_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?
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord