debian-mirror-gitlab/app/graphql/types/work_items/state_event_enum.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
337 B
Ruby
Raw Normal View History

2022-04-04 11:22:00 +05:30
# 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