summaryrefslogtreecommitdiff
path: root/app/graphql/types/issue_state_enum.rb
blob: 70c34fbe491ffc56d62efdda5883b9ae03bf6ac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  # This is a BaseEnum through IssuableEnum, so it does not need authorization
  class IssueStateEnum < IssuableStateEnum
    graphql_name 'IssueState'
    description 'State of a GitLab issue'
  end
  # rubocop: enable Graphql/AuthorizeTypes
end