mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
Add constants for biometrics auto-prompt option (#483)
* Add constants for biometrics auto-prompt option * rename constant Co-authored-by: Michael Cho <mcho@tutanota.com>
This commit is contained in:
parent
da132217da
commit
da6fde4b15
@ -7,6 +7,7 @@ export class ConstantsService {
|
|||||||
static readonly disableFaviconKey: string = 'disableFavicon';
|
static readonly disableFaviconKey: string = 'disableFavicon';
|
||||||
static readonly disableBadgeCounterKey: string = 'disableBadgeCounter';
|
static readonly disableBadgeCounterKey: string = 'disableBadgeCounter';
|
||||||
static readonly disableAutoTotpCopyKey: string = 'disableAutoTotpCopy';
|
static readonly disableAutoTotpCopyKey: string = 'disableAutoTotpCopy';
|
||||||
|
static readonly disableAutoBiometricsPromptKey: string = 'noAutoPromptBiometrics';
|
||||||
static readonly enableAutoFillOnPageLoadKey: string = 'enableAutoFillOnPageLoad';
|
static readonly enableAutoFillOnPageLoadKey: string = 'enableAutoFillOnPageLoad';
|
||||||
static readonly autoFillOnPageLoadDefaultKey: string = 'autoFillOnPageLoadDefault';
|
static readonly autoFillOnPageLoadDefaultKey: string = 'autoFillOnPageLoadDefault';
|
||||||
static readonly vaultTimeoutKey: string = 'lockOption';
|
static readonly vaultTimeoutKey: string = 'lockOption';
|
||||||
@ -39,6 +40,7 @@ export class ConstantsService {
|
|||||||
readonly disableFaviconKey: string = ConstantsService.disableFaviconKey;
|
readonly disableFaviconKey: string = ConstantsService.disableFaviconKey;
|
||||||
readonly disableBadgeCounterKey: string = ConstantsService.disableBadgeCounterKey;
|
readonly disableBadgeCounterKey: string = ConstantsService.disableBadgeCounterKey;
|
||||||
readonly disableAutoTotpCopyKey: string = ConstantsService.disableAutoTotpCopyKey;
|
readonly disableAutoTotpCopyKey: string = ConstantsService.disableAutoTotpCopyKey;
|
||||||
|
readonly disableAutoBiometricsPromptKey: string = ConstantsService.disableAutoBiometricsPromptKey;
|
||||||
readonly enableAutoFillOnPageLoadKey: string = ConstantsService.enableAutoFillOnPageLoadKey;
|
readonly enableAutoFillOnPageLoadKey: string = ConstantsService.enableAutoFillOnPageLoadKey;
|
||||||
readonly autoFillOnPageLoadDefaultKey: string = ConstantsService.autoFillOnPageLoadDefaultKey;
|
readonly autoFillOnPageLoadDefaultKey: string = ConstantsService.autoFillOnPageLoadDefaultKey;
|
||||||
readonly vaultTimeoutKey: string = ConstantsService.vaultTimeoutKey;
|
readonly vaultTimeoutKey: string = ConstantsService.vaultTimeoutKey;
|
||||||
|
@ -10,6 +10,5 @@ export class ElectronConstants {
|
|||||||
static readonly enableBrowserIntegrationFingerprint: string = 'enableBrowserIntegrationFingerprint';
|
static readonly enableBrowserIntegrationFingerprint: string = 'enableBrowserIntegrationFingerprint';
|
||||||
static readonly alwaysShowDock: string = 'alwaysShowDock';
|
static readonly alwaysShowDock: string = 'alwaysShowDock';
|
||||||
static readonly openAtLogin: string = 'openAtLogin';
|
static readonly openAtLogin: string = 'openAtLogin';
|
||||||
static readonly noAutoPromptBiometrics: string = 'noAutoPromptBiometrics';
|
|
||||||
static readonly noAutoPromptBiometricsText: string = 'noAutoPromptBiometricsText';
|
static readonly noAutoPromptBiometricsText: string = 'noAutoPromptBiometricsText';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user