Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipeline_details_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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