summaryrefslogtreecommitdiff
path: root/app/graphql/types/work_item_state_enum.rb
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