Add Microsoft Authenticator to supported applications (#3704)

This commit is contained in:
Jon Koops 2022-11-03 16:03:20 +01:00 committed by GitHub
parent b7e4db8e15
commit da4e740a8d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -22,7 +22,8 @@ describe("Policies", () => {
it("should change to hotp", () => { it("should change to hotp", () => {
otpPoliciesPage.checkSupportedApplications( otpPoliciesPage.checkSupportedApplications(
"FreeOTP", "FreeOTP",
"Google Authenticator" "Google Authenticator",
"Microsoft Authenticator"
); );
otpPoliciesPage.setPolicyType("hotp").increaseInitialCounter().save(); otpPoliciesPage.setPolicyType("hotp").increaseInitialCounter().save();
masthead.checkNotificationMessage("OTP policy successfully updated"); masthead.checkNotificationMessage("OTP policy successfully updated");

View file

@ -30,7 +30,8 @@
"supportedApplications": "Supported applications", "supportedApplications": "Supported applications",
"otpSupportedApplications": { "otpSupportedApplications": {
"totpAppFreeOTPName": "FreeOTP", "totpAppFreeOTPName": "FreeOTP",
"totpAppGoogleName": "Google Authenticator" "totpAppGoogleName": "Google Authenticator",
"totpAppMicrosoftAuthenticatorName": "Microsoft Authenticator"
}, },
"updateOtpSuccess": "OTP policy successfully updated", "updateOtpSuccess": "OTP policy successfully updated",
"updateOtpError": "Could not update OTP policy: {{error}}", "updateOtpError": "Could not update OTP policy: {{error}}",