2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-05 16:43:05 -05:00
|
|
|
class Auth::PasswordsController < Devise::PasswordsController
|
2023-10-23 11:46:21 -04:00
|
|
|
skip_before_action :check_self_destruct!
|
2024-01-25 10:13:41 -05:00
|
|
|
before_action :redirect_invalid_reset_token, only: :edit, unless: :reset_password_token_is_valid?
|
2017-08-03 11:45:45 -04:00
|
|
|
|
2016-03-05 16:43:05 -05:00
|
|
|
layout 'auth'
|
2017-08-03 11:45:45 -04:00
|
|
|
|
2020-01-23 18:20:38 -05:00
|
|
|
def update
|
|
|
|
super do |resource|
|
2020-07-07 09:26:31 -04:00
|
|
|
if resource.errors.empty?
|
|
|
|
resource.session_activations.destroy_all
|
2022-12-15 09:47:06 -05:00
|
|
|
|
|
|
|
resource.revoke_access!
|
2020-07-07 09:26:31 -04:00
|
|
|
end
|
2020-01-23 18:20:38 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-03 11:45:45 -04:00
|
|
|
private
|
|
|
|
|
2024-01-25 10:13:41 -05:00
|
|
|
def redirect_invalid_reset_token
|
|
|
|
flash[:error] = I18n.t('auth.invalid_reset_password_token')
|
|
|
|
redirect_to new_password_path(resource_name)
|
2017-08-03 11:45:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def reset_password_token_is_valid?
|
|
|
|
resource_class.with_reset_password_token(params[:reset_password_token]).present?
|
|
|
|
end
|
2016-03-05 16:43:05 -05:00
|
|
|
end
|