Skip to content

Commit

Permalink
Merge pull request #6043 from lashinijay/hotfix-iproov
Browse files Browse the repository at this point in the history
[Hotfix] Disable iproov as a first factor authenticator
  • Loading branch information
lashinijay authored Apr 23, 2024
2 parents 2e53ffa + 765fef9 commit 637e5e1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,9 @@ export const StepBasedFlow: FunctionComponent<AuthenticationFlowPropsInterface>
.includes(authenticator.defaultAuthenticator.authenticatorId)) {

filteredSocialAuthenticators.push(authenticator);
} else if (ApplicationManagementConstants.SECOND_FACTOR_AUTHENTICATORS.includes(
authenticator.defaultAuthenticator.authenticatorId)) {
secondFactorAuth.push(authenticator);
} else {
filteredEnterpriseAuthenticators.push(authenticator);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,9 @@ export class ApplicationManagementConstants {
// Second factor authenticators.
public static readonly SECOND_FACTOR_AUTHENTICATORS: string[] = [
IdentityProviderManagementConstants.TOTP_AUTHENTICATOR,
IdentityProviderManagementConstants.TOTP_AUTHENTICATOR_ID
IdentityProviderManagementConstants.TOTP_AUTHENTICATOR_ID,
IdentityProviderManagementConstants.IPROOV_AUTHENTICATOR,
IdentityProviderManagementConstants.IPROOV_AUTHENTICATOR_ID
];

// Known social authenticators.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ export class IdentityProviderManagementConstants {
public static readonly X509_AUTHENTICATOR: string = "x509CertificateAuthenticator";
public static readonly SESSION_EXECUTOR_AUTHENTICATOR: string = "SessionExecutor";
public static readonly TOTP_AUTHENTICATOR: string = "totp";
public static readonly IPROOV_AUTHENTICATOR: string = "IproovAuthenticator";
public static readonly EMAIL_OTP_AUTHENTICATOR: string = "email-otp-authenticator";
public static readonly FIDO_AUTHENTICATOR: string = "FIDOAuthenticator";
public static readonly BASIC_AUTHENTICATOR: string = "BasicAuthenticator";
Expand Down

0 comments on commit 637e5e1

Please sign in to comment.