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 attributes?
For now, I wrote this:
def user_params
params.require(:user).permit(User.fields.keys)
end
Do you think of a better way?