2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-05 22:43:05 +01:00
|
|
|
class Auth::PasswordsController < Devise::PasswordsController
|
2023-10-23 17:46:21 +02:00
|
|
|
skip_before_action :check_self_destruct!
|
2024-01-25 16:13:41 +01:00
|
|
|
before_action :redirect_invalid_reset_token, only: :edit, unless: :reset_password_token_is_valid?
|
2017-08-03 17:45:45 +02:00
|
|
|
|
2016-03-05 22:43:05 +01:00
|
|
|
layout 'auth'
|
2017-08-03 17:45:45 +02:00
|
|
|
|
2020-01-24 00:20:38 +01:00
|
|
|
def update
|
|
|
|
super do |resource|
|
2020-07-07 15:26:31 +02:00
|
|
|
if resource.errors.empty?
|
|
|
|
resource.session_activations.destroy_all
|
2022-12-15 15:47:06 +01:00
|
|
|
|
|
|
|
resource.revoke_access!
|
2020-07-07 15:26:31 +02:00
|
|
|
end
|
2020-01-24 00:20:38 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-03 17:45:45 +02:00
|
|
|
private
|
|
|
|
|
2024-01-25 16:13:41 +01: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 17:45:45 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def reset_password_token_is_valid?
|
|
|
|
resource_class.with_reset_password_token(params[:reset_password_token]).present?
|
|
|
|
end
|
2016-03-05 22:43:05 +01:00
|
|
|
end
|