summaryrefslogtreecommitdiff
path: root/app/graphql/types/ci/pipeline_schedule_variable_type.rb
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