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

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

module Types
  module WorkItems
    class StateEventEnum < BaseEnum
      graphql_name 'WorkItemStateEvent'
      description 'Values for work item state events'

      value 'REOPEN', 'Reopens the work item.', value: 'reopen'
      value 'CLOSE', 'Closes the work item.', value: 'close'
    end
  end
end