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