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

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

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  class IssueSortEnum < IssuableSortEnum
    graphql_name 'IssueSort'
    description 'Values for sorting issues'
  end
  # rubocop: enable Graphql/AuthorizeTypes
end