diff --git a/src/layouts/entry-page/entry-page.vue b/src/layouts/entry-page/entry-page.vue index 198cc3bc..c1a2d011 100644 --- a/src/layouts/entry-page/entry-page.vue +++ b/src/layouts/entry-page/entry-page.vue @@ -76,6 +76,11 @@ this.mainStore.issConfig.clientName = data.accountName; this.mainStore.issConfig.accountNumber = data.accountNumber; this.mainStore.issConfig.styleSheet = data.styleSheet; + this.mainStore.issConfig.isCoverageEnabled = data.coverageEnabled; + + // NOTE: This is only here for testing purposes. Will be removed and replaced by actual token/signature validation when work is completed. + if ( data.authentication == "RSAToken") + this.mainStore.issConfig.isAuthenticated = true; try { diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue index 36fe02e1..48d8c69f 100644 --- a/src/layouts/service-location/service-location.vue +++ b/src/layouts/service-location/service-location.vue @@ -1,30 +1,38 @@