Flowdock
method

array_of_permitted_scalars?

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: Parameters
array_of_permitted_scalars?(value) 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 434
      def array_of_permitted_scalars?(value)
        if value.is_a?(Array)
          value.all? {|element| permitted_scalar?(element)}
        end
      end
Register or log in to add new notes.