From f514e2bb676cb0ecca81c678cb054ce596999971 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 14 Nov 2018 23:13:34 -0500 Subject: [PATCH] autoConfirmFingerprints constant --- src/services/constants.service.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/services/constants.service.ts b/src/services/constants.service.ts index cd0a260359a..f492209a539 100644 --- a/src/services/constants.service.ts +++ b/src/services/constants.service.ts @@ -14,6 +14,7 @@ export class ConstantsService { static readonly localeKey: string = 'locale'; static readonly themeKey: string = 'theme'; static readonly collapsedGroupingsKey: string = 'collapsedGroupings'; + static readonly autoConfirmFingerprints: string = 'autoConfirmFingerprints'; readonly environmentUrlsKey: string = ConstantsService.environmentUrlsKey; readonly disableGaKey: string = ConstantsService.disableGaKey; @@ -29,4 +30,5 @@ export class ConstantsService { readonly localeKey: string = ConstantsService.localeKey; readonly themeKey: string = ConstantsService.themeKey; readonly collapsedGroupingsKey: string = ConstantsService.collapsedGroupingsKey; + readonly autoConfirmFingerprints: string = ConstantsService.autoConfirmFingerprints; }