summaryrefslogtreecommitdiff
path: root/app/models/ci/pipeline_schedule_variable.rb
blob: 718ed14edeb9ddaed89a6af1219b0bb97fa95e1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Ci
  class PipelineScheduleVariable < Ci::ApplicationRecord
    include Ci::HasVariable
    include Ci::RawVariable

    belongs_to :pipeline_schedule

    alias_attribute :secret_value, :value

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