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: d78ad4af4dc7d6e4fe66a1456e8f9036d4c1dace (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class PipelineDetailsEntity < PipelineEntity
  expose :details do
    expose :ordered_stages, as: :stages, using: StageEntity
    expose :artifacts, using: BuildArtifactEntity
    expose :manual_actions, using: BuildActionEntity
    expose :scheduled_actions, using: BuildActionEntity
  end
end