diff --git a/src/services/constants.service.ts b/src/services/constants.service.ts index ee1b3636b2..23a24d134e 100644 --- a/src/services/constants.service.ts +++ b/src/services/constants.service.ts @@ -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;