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