Flowdock
method

call

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: CompiledFilter
call(params, parents = [], original_params = params) public

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 98
      def call(params, parents = [], original_params = params)
        filtered_params = params.class.new

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

        filtered_params
      end
Register or log in to add new notes.