feat(password-recovery): Add password recovery with secret question or secondary email

This commit is contained in:
smizrahi
2022-10-03 08:56:41 +02:00
parent 6931186bba
commit 656807b77d
47 changed files with 1729 additions and 159 deletions
+6 -1
View File
@@ -792,7 +792,12 @@ static SoProduct *commonProduct = nil;
// needs to be created (or destroyed) during the session initialization
if ([_actionName isEqualToString: @"connect"] ||
[_actionName isEqualToString: @"changePassword"] ||
[_actionName isEqualToString: @"logoff"])
[_actionName isEqualToString: @"logoff"] ||
[_actionName isEqualToString: @"passwordRecovery"] ||
[_actionName isEqualToString: @"passwordRecoveryEmail"] ||
[_actionName isEqualToString: @"passwordRecoveryCheck"] ||
[_actionName isEqualToString: @"passwordRecoveryEnabled"]
)
{
return [super performActionNamed: _actionName];
}