Archived
1
0
Fork 0

app/library/Auth.php: in loginOauth() activate deleted accounts.

This commit is contained in:
Henrik Hautakoski 2018-08-10 20:35:24 +02:00
parent ecf38258f5
commit a50f460413
No known key found for this signature in database
GPG key ID: 839F3A7EAFAEAFAA

View file

@ -58,6 +58,13 @@ class Auth extends Component
return $user->getMessages();
}
}
// Here we activate the user.
// As for OAuth we perform registration if the user does not exist.
// We should therefore activate deleted accounts.
else if ($user->Status == User::STATUS_DELETED) {
$user->Status = User::STATUS_ACTIVE;
$user->save();
}
$this->setIdentity($user->getId());