13 lines
280 B
Ruby
13 lines
280 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
class PipelineScheduleVariable < Ci::ApplicationRecord
|
|
include Ci::HasVariable
|
|
|
|
belongs_to :pipeline_schedule
|
|
|
|
alias_attribute :secret_value, :value
|
|
|
|
validates :key, uniqueness: { scope: :pipeline_schedule_id }
|
|
end
|
|
end
|