1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

Add disable badge counter (#281)

* jslib code for 287 issue

added bunch of state-save for new option

* remove excessive code

* revert accidental revert
This commit is contained in:
Vladislav Voronin
2021-03-10 23:36:33 +03:00
committed by GitHub
parent 8541027d40
commit 5d32ba68ec

View File

@@ -5,6 +5,7 @@ export class ConstantsService {
static readonly disableChangedPasswordNotificationKey: string = 'disableChangedPasswordNotification';
static readonly disableContextMenuItemKey: string = 'disableContextMenuItem';
static readonly disableFaviconKey: string = 'disableFavicon';
static readonly disableBadgeCounterKey: string = 'disableBadgeCounter';
static readonly disableAutoTotpCopyKey: string = 'disableAutoTotpCopy';
static readonly enableAutoFillOnPageLoadKey: string = 'enableAutoFillOnPageLoad';
static readonly vaultTimeoutKey: string = 'lockOption';
@@ -35,6 +36,7 @@ export class ConstantsService {
readonly disableAddLoginNotificationKey: string = ConstantsService.disableAddLoginNotificationKey;
readonly disableContextMenuItemKey: string = ConstantsService.disableContextMenuItemKey;
readonly disableFaviconKey: string = ConstantsService.disableFaviconKey;
readonly disableBadgeCounterKey: string = ConstantsService.disableBadgeCounterKey;
readonly disableAutoTotpCopyKey: string = ConstantsService.disableAutoTotpCopyKey;
readonly enableAutoFillOnPageLoadKey: string = ConstantsService.enableAutoFillOnPageLoadKey;
readonly vaultTimeoutKey: string = ConstantsService.vaultTimeoutKey;