akkounts/app/controllers/settings/account_controller.rb

14 lines
308 B
Ruby
Raw Normal View History

2023-01-09 06:41:16 +00:00
class Settings::AccountController < SettingsController
def index
end
def reset_password
current_user.send_reset_password_instructions
sign_out current_user
msg = "We have sent you an email with a link to reset your password."
redirect_to check_your_email_path, notice: msg
end
end