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

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

module Types
  class WorkItemStateEnum < BaseEnum
    graphql_name 'WorkItemState'
    description 'State of a GitLab work item'

    value 'OPEN', 'In open state.', value: 'opened'
    value 'CLOSED', 'In closed state.', value: 'closed'
  end
end