14 lines
341 B
Ruby
14 lines
341 B
Ruby
class SettingsController < ApplicationController
|
|
before_action :require_user_signed_in
|
|
|
|
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
|