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

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

module Types
  module Ci
    class PipelineScheduleVariableType < BaseObject
      graphql_name 'PipelineScheduleVariable'

      authorize :read_pipeline_schedule_variables

      implements(VariableInterface)
    end
  end
end