From da4e740a8dd9ac61c3fd6603a2ecb1cf16cae9cc Mon Sep 17 00:00:00 2001 From: Jon Koops Date: Thu, 3 Nov 2022 16:03:20 +0100 Subject: [PATCH] Add Microsoft Authenticator to supported applications (#3704) --- apps/admin-ui/cypress/e2e/authentication_policies.spec.ts | 3 ++- apps/admin-ui/public/resources/en/authentication.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/admin-ui/cypress/e2e/authentication_policies.spec.ts b/apps/admin-ui/cypress/e2e/authentication_policies.spec.ts index 41d27235b4..c3e59b5bce 100644 --- a/apps/admin-ui/cypress/e2e/authentication_policies.spec.ts +++ b/apps/admin-ui/cypress/e2e/authentication_policies.spec.ts @@ -22,7 +22,8 @@ describe("Policies", () => { it("should change to hotp", () => { otpPoliciesPage.checkSupportedApplications( "FreeOTP", - "Google Authenticator" + "Google Authenticator", + "Microsoft Authenticator" ); otpPoliciesPage.setPolicyType("hotp").increaseInitialCounter().save(); masthead.checkNotificationMessage("OTP policy successfully updated"); diff --git a/apps/admin-ui/public/resources/en/authentication.json b/apps/admin-ui/public/resources/en/authentication.json index 3ebbc46280..e393d594eb 100644 --- a/apps/admin-ui/public/resources/en/authentication.json +++ b/apps/admin-ui/public/resources/en/authentication.json @@ -30,7 +30,8 @@ "supportedApplications": "Supported applications", "otpSupportedApplications": { "totpAppFreeOTPName": "FreeOTP", - "totpAppGoogleName": "Google Authenticator" + "totpAppGoogleName": "Google Authenticator", + "totpAppMicrosoftAuthenticatorName": "Microsoft Authenticator" }, "updateOtpSuccess": "OTP policy successfully updated", "updateOtpError": "Could not update OTP policy: {{error}}",