Flowdock
method

convert_hashes_to_parameters

Importance_0
v4.2.7 - Show latest stable - 0 notes - Class: Parameters
convert_hashes_to_parameters(key, value, assign_if_converted=true) 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/strong_parameters.rb, line 455
      def convert_hashes_to_parameters(key, value, assign_if_converted=true)
        converted = convert_value_to_parameters(value)
        self[key] = converted if assign_if_converted && !converted.equal?(value)
        converted
      end
Register or log in to add new notes.