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
Would this work?
def user_params params.require(:user).permit(User.column_names) end