I\'m building a web app with Rails 4 strong parameters.
When building the admin back office controllers, I wonder what is the best way to permit all the model attrib
Just in case someone need it for Rails 6, without even a model linked to your controller, you can use:
before_action :accept_all_params private def accept_all_params params.permit! end
And done, now you can play with