mirror of
https://github.com/bitwarden/jslib
synced 2025-12-10 13:23:15 +00: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:
@@ -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';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user