From d4581b0ba3de263ec3a83e54077d9a35f88b8ea5 Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Fri, 9 Sep 2022 11:55:26 -0400 Subject: [PATCH] Remove admin url from config object (#3479) --- 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 75ffe17c1b..62744ecb62 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 79a23d6c8c..c296292f30 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"); }