summaryrefslogtreecommitdiff
path: root/app/models/ci/job_variable.rb
blob: 862a0bc1299653df44ca0effdd49cb76cccb5ef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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