Skip to content
Snippets Groups Projects

Include coverage reports from child pipeline

All threads resolved!
5 files
+ 35
1
Compare changes
  • Side-by-side
  • Inline
Files
5
@@ -3,6 +3,10 @@
class LinkedIssueEntity < Grape::Entity
include RequestAwareEntity
format_with(:upcase) do |item|
item.try(:upcase)
end
expose :id, :confidential, :title
expose :assignees, using: UserEntity
@@ -21,6 +25,11 @@ class LinkedIssueEntity < Grape::Entity
Gitlab::UrlBuilder.build(link, only_path: true)
end
expose :issue_type,
as: :type,
format_with: :upcase,
documentation: { type: "String", desc: "One of #{::WorkItems::Type.base_types.keys.map(&:upcase)}" }
expose :relation_path
expose :due_date, :created_at, :closed_at
Loading