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