2018-07-19 14:43:13 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-26 04:31:42 -04:00
|
|
|
class PipelineDetailsEntity < PipelineEntity
|
|
|
|
expose :details do
|
2018-05-29 09:20:10 -04:00
|
|
|
expose :ordered_stages, as: :stages, using: StageEntity
|
2017-05-26 04:31:42 -04:00
|
|
|
expose :artifacts, using: BuildArtifactEntity
|
|
|
|
expose :manual_actions, using: BuildActionEntity
|
2018-10-01 02:27:34 -04:00
|
|
|
expose :scheduled_actions, using: BuildActionEntity
|
2017-05-26 04:31:42 -04:00
|
|
|
end
|
|
|
|
end
|