method
convert_hashes_to_parameters
rails latest stable - Class:
ActionController::Parameters
convert_hashes_to_parameters(key, value)private
No documentation available.
# File actionpack/lib/action_controller/metal/strong_parameters.rb, line 1018
def convert_hashes_to_parameters(key, value)
converted = convert_value_to_parameters(value)
@parameters[key] = converted unless converted.equal?(value)
converted
end