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