debian-mirror-gitlab/app/models/ci/pipeline_schedule_variable.rb

13 lines
271 B
Ruby
Raw Normal View History

2017-09-10 17:25:29 +05:30
module Ci
class PipelineScheduleVariable < ActiveRecord::Base
2018-03-17 18:26:18 +05:30
extend Gitlab::Ci::Model
2017-09-10 17:25:29 +05:30
include HasVariable
belongs_to :pipeline_schedule
2018-03-17 18:26:18 +05:30
2018-05-09 12:01:36 +05:30
alias_attribute :secret_value, :value
2018-03-17 18:26:18 +05:30
validates :key, uniqueness: { scope: :pipeline_schedule_id }
2017-09-10 17:25:29 +05:30
end
end