15 lines
310 B
Ruby
15 lines
310 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Ci
|
||
|
class JobVariable < ApplicationRecord
|
||
|
extend Gitlab::Ci::Model
|
||
|
include NewHasVariable
|
||
|
|
||
|
belongs_to :job, class_name: "Ci::Build", foreign_key: :job_id
|
||
|
|
||
|
alias_attribute :secret_value, :value
|
||
|
|
||
|
validates :key, uniqueness: { scope: :job_id }
|
||
|
end
|
||
|
end
|