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

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

module Types
  module Ci
    module Config
      class IncludeTypeEnum < BaseEnum
        graphql_name 'CiConfigIncludeType'
        description 'Include type.'

        value 'remote', description: 'Remote include.', value: :remote
        value 'local', description: 'Local include.', value: :local
        value 'file', description: 'Project file include.', value: :file
        value 'template', description: 'Template include.', value: :template
      end
    end
  end
end