debian-mirror-gitlab/app/models/ci/pipeline_variable.rb
2018-10-15 14:42:47 +05:30

13 lines
245 B
Ruby

module Ci
class PipelineVariable < ActiveRecord::Base
extend Gitlab::Ci::Model
include HasVariable
belongs_to :pipeline
alias_attribute :secret_value, :value
validates :key, uniqueness: { scope: :pipeline_id }
end
end