From f626f0df87df67ee3c7019f8423525a7572bfbf7 Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Fri, 9 Sep 2022 11:03:36 -0400 Subject: [PATCH] Remove admin url from config object --- libs/common/src/models/data/server-config.data.ts | 2 -- libs/common/src/models/response/server-config-response.ts | 2 -- 2 files changed, 4 deletions(-) diff --git a/libs/common/src/models/data/server-config.data.ts b/libs/common/src/models/data/server-config.data.ts index 75ffe17c1bb1..62744ecb621a 100644 --- a/libs/common/src/models/data/server-config.data.ts +++ b/libs/common/src/models/data/server-config.data.ts @@ -38,7 +38,6 @@ export class EnvironmentServerConfigData { vault: string; api: string; identity: string; - admin: string; notifications: string; sso: string; @@ -46,7 +45,6 @@ export class EnvironmentServerConfigData { this.vault = response.vault; this.api = response.api; this.identity = response.identity; - this.admin = response.admin; this.notifications = response.notifications; this.sso = response.sso; } diff --git a/libs/common/src/models/response/server-config-response.ts b/libs/common/src/models/response/server-config-response.ts index 79a23d6c8c09..c296292f3068 100644 --- a/libs/common/src/models/response/server-config-response.ts +++ b/libs/common/src/models/response/server-config-response.ts @@ -24,7 +24,6 @@ export class EnvironmentServerConfigResponse extends BaseResponse { vault: string; api: string; identity: string; - admin: string; notifications: string; sso: string; @@ -38,7 +37,6 @@ export class EnvironmentServerConfigResponse extends BaseResponse { this.vault = this.getResponseProperty("Vault"); this.api = this.getResponseProperty("Api"); this.identity = this.getResponseProperty("Identity"); - this.admin = this.getResponseProperty("Admin"); this.notifications = this.getResponseProperty("Notifications"); this.sso = this.getResponseProperty("Sso"); }