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

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

module Types
  class MilestoneStateEnum < BaseEnum
    graphql_name 'MilestoneStateEnum'
    description 'Current state of milestone'

    value 'active', description: 'Milestone is currently active.'
    value 'closed', description: 'Milestone is closed.'
  end
end