debian-mirror-gitlab/app/models/ci/pipeline_variable.rb
2021-10-27 15:23:28 +05:30

18 lines
315 B
Ruby

# frozen_string_literal: true
module Ci
class PipelineVariable < Ci::ApplicationRecord
include Ci::HasVariable
belongs_to :pipeline
alias_attribute :secret_value, :value
validates :key, uniqueness: { scope: :pipeline_id }
def hook_attrs
{ key: key, value: value }
end
end
end