I have some Backbone models with many deeply nested attributes.
Before I saved these models, I had no problems, but I recently upgraded to Rails 4 and started using strong options. Now I get the error found unpermitted parameters .
attr_accessible just ignore parameters that were not skipped, but I think strong parameters work differently?
Is there a way to make Rails just ignore the unlisted parameters and just update the parameters that are allowed?
Removing all incomplete parameters from my Backbone model will be a huge pain.
source share