gitlab-org--gitlab-foss/app/views/issues/_issue.atom.builder

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
427 B
Plaintext
Raw Normal View History

# frozen_string_literal: true
2016-05-23 21:06:26 +00:00
xml.entry do
xml.id project_issue_url(issue.project, issue)
xml.link href: project_issue_url(issue.project, issue)
# using the shovel operator (xml <<) would make us lose indentation, so we do this (https://github.com/rails/rails/issues/7036)
render(partial: 'shared/issuable/issuable', object: issue, locals: { builder: xml })
xml.due_date issue.due_date if issue.due_date
2016-05-23 21:06:26 +00:00
end