2018-08-03 03:15:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
module Ci
|
2021-08-03 02:08:50 -04:00
|
|
|
class TriggerRequest < Ci::ApplicationRecord
|
2016-10-18 17:20:36 -04:00
|
|
|
belongs_to :trigger
|
|
|
|
belongs_to :pipeline, foreign_key: :commit_id
|
|
|
|
has_many :builds
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2018-09-04 03:51:00 -04:00
|
|
|
delegate :short_token, to: :trigger, prefix: true, allow_nil: true
|
|
|
|
|
2017-08-28 10:29:28 -04:00
|
|
|
# We switched to Ci::PipelineVariable from Ci::TriggerRequest.variables.
|
2017-08-24 04:08:32 -04:00
|
|
|
# Ci::TriggerRequest doesn't save variables anymore.
|
|
|
|
validates :variables, absence: true
|
|
|
|
|
2017-07-03 10:01:41 -04:00
|
|
|
serialize :variables # rubocop:disable Cop/ActiveRecordSerialize
|
2016-07-20 07:17:21 -04:00
|
|
|
|
|
|
|
def user_variables
|
|
|
|
return [] unless variables
|
|
|
|
|
|
|
|
variables.map do |key, value|
|
|
|
|
{ key: key, value: value, public: false }
|
|
|
|
end
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
end
|