fix_manager_reset_password

This commit is contained in:
simon lehericey 2019-08-19 09:48:55 +02:00
parent a455836498
commit e913b01c52

View file

@ -47,7 +47,7 @@ class Administrateur < ApplicationRecord
def registration_state
if active?
'Actif'
elsif reset_password_period_valid?
elsif user.reset_password_period_valid?
'En attente'
else
'Expiré'
@ -55,7 +55,7 @@ class Administrateur < ApplicationRecord
end
def invitation_expired?
!active && !reset_password_period_valid?
!active && !user.reset_password_period_valid?
end
def self.reset_password(reset_password_token, password)