bitwarden-estensione-browser/src/services/constants.service.ts

49 lines
3.3 KiB
TypeScript
Raw Normal View History

export class ConstantsService {
static readonly environmentUrlsKey: string = 'environmentUrls';
static readonly disableGaKey: string = 'disableGa';
static readonly disableAddLoginNotificationKey: string = 'disableAddLoginNotification';
2018-08-01 05:49:15 +02:00
static readonly disableChangedPasswordNotificationKey: string = 'disableChangedPasswordNotification';
static readonly disableContextMenuItemKey: string = 'disableContextMenuItem';
static readonly disableFaviconKey: string = 'disableFavicon';
static readonly disableAutoTotpCopyKey: string = 'disableAutoTotpCopy';
static readonly enableAutoFillOnPageLoadKey: string = 'enableAutoFillOnPageLoad';
static readonly lockOptionKey: string = 'lockOption';
static readonly lastActiveKey: string = 'lastActive';
2018-01-13 16:14:00 +01:00
static readonly neverDomainsKey: string = 'neverDomains';
2018-02-16 21:50:01 +01:00
static readonly installedVersionKey: string = 'installedVersion';
2018-04-25 05:53:03 +02:00
static readonly localeKey: string = 'locale';
2018-05-30 05:16:50 +02:00
static readonly themeKey: string = 'theme';
static readonly collapsedGroupingsKey: string = 'collapsedGroupings';
2018-11-15 05:13:34 +01:00
static readonly autoConfirmFingerprints: string = 'autoConfirmFingerprints';
2018-11-21 20:29:54 +01:00
static readonly dontShowCardsCurrentTab: string = 'dontShowCardsCurrentTab';
static readonly dontShowIdentitiesCurrentTab: string = 'dontShowIdentitiesCurrentTab';
2019-01-09 17:59:11 +01:00
static readonly defaultUriMatch: string = 'defaultUriMatch';
2019-02-13 05:52:50 +01:00
static readonly pinProtectedKey: string = 'pinProtectedKey';
2019-02-14 03:36:36 +01:00
static readonly protectedPin: string = 'protectedPin';
2019-02-27 17:06:55 +01:00
static readonly clearClipboardKey: string = 'clearClipboardKey';
2019-07-03 15:53:55 +02:00
static readonly eventCollectionKey: string = 'eventCollection';
2018-01-10 04:23:38 +01:00
readonly environmentUrlsKey: string = ConstantsService.environmentUrlsKey;
readonly disableGaKey: string = ConstantsService.disableGaKey;
readonly disableAddLoginNotificationKey: string = ConstantsService.disableAddLoginNotificationKey;
readonly disableContextMenuItemKey: string = ConstantsService.disableContextMenuItemKey;
readonly disableFaviconKey: string = ConstantsService.disableFaviconKey;
readonly disableAutoTotpCopyKey: string = ConstantsService.disableAutoTotpCopyKey;
readonly enableAutoFillOnPageLoadKey: string = ConstantsService.enableAutoFillOnPageLoadKey;
readonly lockOptionKey: string = ConstantsService.lockOptionKey;
readonly lastActiveKey: string = ConstantsService.lastActiveKey;
2018-01-13 16:14:00 +01:00
readonly neverDomainsKey: string = ConstantsService.neverDomainsKey;
2018-02-16 21:50:01 +01:00
readonly installedVersionKey: string = ConstantsService.installedVersionKey;
2018-04-25 05:53:03 +02:00
readonly localeKey: string = ConstantsService.localeKey;
2018-05-30 05:16:50 +02:00
readonly themeKey: string = ConstantsService.themeKey;
readonly collapsedGroupingsKey: string = ConstantsService.collapsedGroupingsKey;
2018-11-15 05:13:34 +01:00
readonly autoConfirmFingerprints: string = ConstantsService.autoConfirmFingerprints;
2018-11-21 20:29:54 +01:00
readonly dontShowCardsCurrentTab: string = ConstantsService.dontShowCardsCurrentTab;
readonly dontShowIdentitiesCurrentTab: string = ConstantsService.dontShowIdentitiesCurrentTab;
2019-01-09 17:59:11 +01:00
readonly defaultUriMatch: string = ConstantsService.defaultUriMatch;
2019-02-13 05:52:50 +01:00
readonly pinProtectedKey: string = ConstantsService.pinProtectedKey;
2019-02-14 03:36:36 +01:00
readonly protectedPin: string = ConstantsService.protectedPin;
2019-02-27 17:06:55 +01:00
readonly clearClipboardKey: string = ConstantsService.clearClipboardKey;
2019-07-03 15:53:55 +02:00
readonly eventCollectionKey: string = ConstantsService.eventCollectionKey;
}