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

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

module Types
  module BlobViewers
    class TypeEnum < BaseEnum
      graphql_name 'BlobViewersType'
      description 'Types of blob viewers'

      value 'rich', value: :rich, description: 'Rich blob viewers type.'
      value 'simple', value: :simple, description: 'Simple blob viewers type.'
      value 'auxiliary', value: :auxiliary, description: 'Auxiliary blob viewers type.'
    end
  end
end