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

dag_stage_entity.rb « ci « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c7969da6c3c3d1e1b3259216ef2af6a0f110677b (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Ci
  class DagStageEntity < Grape::Entity
    expose :name

    expose :groups, with: Ci::DagJobGroupEntity
  end
end