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

issue_state_enum.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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