1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

Browser <-> desktop communication (#185)

* Add electron constant for browser integration

* Add constant for browser biometrics. Ensure biometry is locked on lock.

* Avoid saving keys outside desktop

* Fix eslint warning

* Add supportsSecureStorage helper to platformUtils to improve readability
This commit is contained in:
Oscar Hinton
2020-11-18 22:10:57 +01:00
committed by GitHub
parent f44e99d74d
commit 9e4d000b4d
8 changed files with 19 additions and 6 deletions

View File

@@ -145,4 +145,8 @@ export class CliPlatformUtilsService implements PlatformUtilsService {
authenticateBiometric(): Promise<boolean> {
return Promise.resolve(false);
}
supportsSecureStorage(): boolean {
return false;
}
}