Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pipeline_variable.rb « ci « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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