gitlab-org--gitlab-foss/app/models/concerns/ci/raw_variable.rb

18 lines
270 B
Ruby

# frozen_string_literal: true
module Ci
module RawVariable
extend ActiveSupport::Concern
included do
validates :raw, inclusion: { in: [true, false] }
end
private
def uncached_runner_variable
super.merge(raw: raw?)
end
end
end