Skip to content

Instantly share code, notes, and snippets.

@Unpakt
Created January 9, 2013 18:54
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save Unpakt/4495772 to your computer and use it in GitHub Desktop.
Save Unpakt/4495772 to your computer and use it in GitHub Desktop.
Put "repair_empty_param_associations" in your before filters in the application_controller.rb
def repair_empty_param_associations
params.keys.each do |key|
repair_nested_params(params, key, params[key])
end
end
private
def repair_nested_params(current_params, key, value)
if key =~ /^(.*)_attributes$/ && value.nil?
current_params[key] = []
elsif value.is_a? Hash
value.keys.each do |nested_key|
repair_nested_params(value, nested_key, value[nested_key])
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment