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

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

module Types
  class IssuableStateEnum < BaseEnum
    graphql_name 'IssuableState'
    description 'State of a GitLab issue or merge request'

    value 'opened', description: 'In open state.'
    value 'closed', description: 'In closed state.'
    value 'locked', description: 'Discussion has been locked.'
    value 'all', description: 'All available.'
  end
end