17 lines
294 B
Ruby
17 lines
294 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, presence: true
|
|
|
|
def hook_attrs
|
|
{ key: key, value: value }
|
|
end
|
|
end
|
|
end
|