Merge pull request #4213 from betagouv/fix_manager_reset_password

Corriger un bug dans le manager concernant le reset de password
This commit is contained in:
LeSim 2019-08-20 12:17:37 +02:00 committed by GitHub
commit 132900cca2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)