Sha256: 0d10ddda0326a501aa9cc73855ed1d2a4c31660769822b8e4172d31e436d6718
Contents?: true
Size: 569 Bytes
Versions: 56
Compression:
Stored size: 569 Bytes
Contents
module ::Foreman::Controller::Parameters::ForeignInputSet extend ActiveSupport::Concern class_methods do def foreign_input_set_params_filter Foreman::ParameterFilter.new(::ForeignInputSet).tap do |filter| filter.permit_by_context(:id, :_destroy, :template_id, :target_template_id, :include_all, :include, :exclude, :nested => true) end end end def foreign_input_set_params self.class.foreign_input_set_params_filter.filter_params(params, parameter_filter_context, :foreign_input_set) end end
Version data entries
56 entries across 56 versions & 1 rubygems