debian-mirror-gitlab/app/models/ci/pipeline_variable.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
399 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
module Ci
2021-10-27 15:23:28 +05:30
class PipelineVariable < Ci::ApplicationRecord
2022-10-11 01:57:18 +05:30
include Ci::Partitionable
2020-04-22 19:07:51 +05:30
include Ci::HasVariable
2023-01-13 00:05:48 +05:30
include Ci::RawVariable
2017-09-10 17:25:29 +05:30
belongs_to :pipeline
2022-10-11 01:57:18 +05:30
partitionable scope: :pipeline
2018-10-15 14:42:47 +05:30
alias_attribute :secret_value, :value
2022-10-11 01:57:18 +05:30
validates :key, :pipeline, presence: true
2018-12-05 23:21:45 +05:30
def hook_attrs
{ key: key, value: value }
end
2017-09-10 17:25:29 +05:30
end
end