passwords_controller.rb �S �qU # app/controllers/users/password_controller.rb class Users::PasswordsController < Devise::PasswordsController def resource_params params.require(:user).permit(:email, :password, :password_confirmation) end private :resource_params end registrations_controller.rb ���qU `��qU # app/controllers/users/registrations_controller.rb class Users::RegistrationsController < Dev