1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-27 23:31:41 +02:00

2fa strings and supports duo false

This commit is contained in:
Kyle Spearrin 2018-05-16 15:35:24 -04:00
parent cd54aedb9f
commit 2170ebc6c7
3 changed files with 14 additions and 1 deletions

2
jslib

@ -1 +1 @@
Subproject commit e6fde2e92be4be472933234daa7bae242ee17794
Subproject commit cf5bce1ea91ebbc1c99a550b62114a88bfeb2036

View File

@ -1,5 +1,14 @@
{
"bitwarden": {
"message": "Bitwarden"
},
"authenticatorAppTitle": {
"message": "Authenticator App"
},
"yubiKeyTitle": {
"message": "YubiKey OTP Security Key"
},
"emailTitle": {
"message": "Email"
}
}

View File

@ -97,6 +97,10 @@ export class NodePlatformUtilsService implements PlatformUtilsService {
return false;
}
supportsDuo(): boolean {
return false;
}
showDialog(text: string, title?: string, confirmText?: string, cancelText?: string, type?: string):
Promise<boolean> {
throw new Error('Not implemented.');