b7a583b2c4
* Feature: Ability to switch between multiple accounts * Fix rubocop * Fix assigned inboxes * fix auth json * Add account switcher in UI * fix ordering on administrate * Add switch accounts to sidebar * add account id * Fix schema.rb timestamp * Revert "add account id" This reverts commit 27570f50ef584cb9a5f69454f43f630b318c8807. * Add a check for account Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
46 lines
1.6 KiB
Ruby
46 lines
1.6 KiB
Ruby
class DeviseOverrides::PasswordsController < Devise::PasswordsController
|
|
include AuthHelper
|
|
|
|
skip_before_action :require_no_authentication, raise: false
|
|
skip_before_action :authenticate_user!, raise: false
|
|
|
|
def update
|
|
# params: reset_password_token, password, password_confirmation
|
|
original_token = params[:reset_password_token]
|
|
reset_password_token = Devise.token_generator.digest(self, :reset_password_token, original_token)
|
|
@recoverable = User.find_by(reset_password_token: reset_password_token)
|
|
if @recoverable && reset_password_and_confirmation(@recoverable)
|
|
send_auth_headers(@recoverable)
|
|
render partial: 'devise/auth.json', locals: { resource: @recoverable }
|
|
else
|
|
render json: { "message": 'Invalid token', "redirect_url": '/' }, status: 422
|
|
end
|
|
end
|
|
|
|
def create
|
|
@user = User.find_by(email: params[:email])
|
|
if @user
|
|
@user.send_reset_password_instructions
|
|
build_response(I18n.t('messages.reset_password_success'), 200)
|
|
else
|
|
build_response(I18n.t('messages.reset_password_failure'), 404)
|
|
end
|
|
end
|
|
|
|
protected
|
|
|
|
def reset_password_and_confirmation(recoverable)
|
|
recoverable.confirm unless recoverable.confirmed? # confirm if user resets password without confirming anytime before
|
|
recoverable.reset_password(params[:password], params[:password_confirmation])
|
|
recoverable.reset_password_token = nil
|
|
recoverable.confirmation_token = nil
|
|
recoverable.reset_password_sent_at = nil
|
|
recoverable.save!
|
|
end
|
|
|
|
def build_response(message, status)
|
|
render json: {
|
|
"message": message
|
|
}, status: status
|
|
end
|
|
end
|