2018-08-03 03:15:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-21 05:25:01 -04:00
|
|
|
module Ci
|
2021-08-03 02:08:50 -04:00
|
|
|
class PipelineScheduleVariable < Ci::ApplicationRecord
|
2020-03-18 08:09:13 -04:00
|
|
|
include Ci::HasVariable
|
2017-06-21 05:25:01 -04:00
|
|
|
|
|
|
|
belongs_to :pipeline_schedule
|
2017-08-17 12:43:17 -04:00
|
|
|
|
2018-03-17 11:18:36 -04:00
|
|
|
alias_attribute :secret_value, :value
|
|
|
|
|
2017-08-17 12:43:17 -04:00
|
|
|
validates :key, uniqueness: { scope: :pipeline_schedule_id }
|
2017-06-21 05:25:01 -04:00
|
|
|
end
|
|
|
|
end
|