method
permit_array_of_hashes
v8.0.0 -
Show latest stable
- Class:
ActionController::Parameters
permit_array_of_hashes(value, filter, on_unpermitted:, explicit_arrays:)private
No documentation available.
# File actionpack/lib/action_controller/metal/strong_parameters.rb, line 1382
def permit_array_of_hashes(value, filter, on_unpermitted,, explicit_arrays))
each_array_element(value, filter) do |element|
element.permit_filters(Array.wrap(filter), on_unpermitted,, explicit_arrays))
end
end