Sha256: 5b78e3edf32faf7c44aa1c25225c87ff57d4e1a9baa062bc548e162523be33c2
Contents?: true
Size: 490 Bytes
Versions: 48
Compression:
Stored size: 490 Bytes
Contents
module ForemanPuppet module Extensions module ParametersTemplateCombination extend ActiveSupport::Concern included do class << self prepend PrependedClassMethods end end module PrependedClassMethods def template_combination_params_filter super.tap do |filter| filter.permit_by_context :environment_id, :environment_name, :environment, nested: true end end end end end end
Version data entries
48 entries across 48 versions & 1 rubygems