Flowdock
method

_extract_parameters

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: ParamsWrapper
_extract_parameters(parameters) private

No documentation

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

Hide source
# File actionpack/lib/action_controller/metal/params_wrapper.rb, line 270
      def _extract_parameters(parameters)
        if include_only = _wrapper_options.include
          parameters.slice(*include_only)
        else
          exclude = _wrapper_options.exclude || []
          parameters.except(*(exclude + EXCLUDE_PARAMETERS))
        end
      end
Register or log in to add new notes.