summaryrefslogtreecommitdiff
path: root/app/serializers/pipeline_details_entity.rb
blob: 8ba9cac53c4c5894f3caa701948bbdaa7c852bfe (plain)
1
2
3
4
5
6
7
class PipelineDetailsEntity < PipelineEntity
  expose :details do
    expose :ordered_stages, as: :stages, using: StageEntity
    expose :artifacts, using: BuildArtifactEntity
    expose :manual_actions, using: BuildActionEntity
  end
end