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

issuable_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: 932e90c2d22e048b6565f2ecc3dfcc14ac5cbb3b (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  class IssuableSortEnum < SortEnum
    graphql_name 'IssuableSort'
    description 'Values for sorting issuables'
  end
  # rubocop: enable Graphql/AuthorizeTypes
end