1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00: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

Submodule jslib updated: e6fde2e92b...cf5bce1ea9

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.');