method

call

Importance_0
Ruby on Rails latest stable (v7.1.3.2) - 0 notes - Class: ParameterFilter
call(params, full_parent_key = nil, original_params = params) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/parameter_filter.rb, line 125
    def call(params, full_parent_key = nil, original_params = params)
      filtered_params = params.class.new

      params.each do |key, value|
        filtered_params[key] = value_for_key(key, value, full_parent_key, original_params)
      end

      filtered_params
    end
Register or log in to add new notes.