2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
module Ci
|
|
|
|
class PipelineVariable < 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
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
alias_attribute :secret_value, :value
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
validates :key, uniqueness: { scope: :pipeline_id }
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
def hook_attrs
|
|
|
|
{ key: key, value: value }
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|