gitlab-org--gitlab-foss/app/graphql/types/work_item_state_enum.rb

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

12 lines
279 B
Ruby
Raw Normal View History

# 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