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

freeze_period_status_enum.rb « ci « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aebd0f537e9131ea83174a24a69e5c97b848db61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Types
  module Ci
    class FreezePeriodStatusEnum < BaseEnum
      graphql_name 'CiFreezePeriodStatus'
      description 'Deploy freeze period status'

      value 'ACTIVE', value: :active, description: 'Freeze period is active.'
      value 'INACTIVE', value: :inactive, description: 'Freeze period is inactive.'
    end
  end
end