summaryrefslogtreecommitdiff
path: root/app/models/ci/pipeline_schedule_variable.rb
blob: 03df4e3e638fe39ca61030fd373944246effeba9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module Ci
  class PipelineScheduleVariable < ActiveRecord::Base
    extend Gitlab::Ci::Model
    include HasVariable

    belongs_to :pipeline_schedule

    alias_attribute :secret_value, :value

    validates :key, uniqueness: { scope: :pipeline_schedule_id }
  end
end