1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

[EC-598] feat: first tested rule in new authentitcator

This commit is contained in:
Andreas Coroiu
2023-03-21 14:16:33 +01:00
parent e70d6cdcd4
commit c8ab590086
6 changed files with 156 additions and 8 deletions

View File

@@ -189,6 +189,15 @@ export class BrowserFido2UserInterfaceService implements Fido2UserInterfaceServi
return false;
}
async confirmDuplicateCredential(
existingCipherIds: string[],
newCredential: NewCredentialParams,
abortController?: AbortController
) {
// Not Implemented
return false;
}
private setAbortTimeout(abortController: AbortController) {
return setTimeout(() => abortController.abort());
}