Remove admin url from config object (#3479)
This commit is contained in:
parent
bbd7ff3cde
commit
d4581b0ba3
|
@ -38,7 +38,6 @@ export class EnvironmentServerConfigData {
|
||||||
vault: string;
|
vault: string;
|
||||||
api: string;
|
api: string;
|
||||||
identity: string;
|
identity: string;
|
||||||
admin: string;
|
|
||||||
notifications: string;
|
notifications: string;
|
||||||
sso: string;
|
sso: string;
|
||||||
|
|
||||||
|
@ -46,7 +45,6 @@ export class EnvironmentServerConfigData {
|
||||||
this.vault = response.vault;
|
this.vault = response.vault;
|
||||||
this.api = response.api;
|
this.api = response.api;
|
||||||
this.identity = response.identity;
|
this.identity = response.identity;
|
||||||
this.admin = response.admin;
|
|
||||||
this.notifications = response.notifications;
|
this.notifications = response.notifications;
|
||||||
this.sso = response.sso;
|
this.sso = response.sso;
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,6 @@ export class EnvironmentServerConfigResponse extends BaseResponse {
|
||||||
vault: string;
|
vault: string;
|
||||||
api: string;
|
api: string;
|
||||||
identity: string;
|
identity: string;
|
||||||
admin: string;
|
|
||||||
notifications: string;
|
notifications: string;
|
||||||
sso: string;
|
sso: string;
|
||||||
|
|
||||||
|
@ -38,7 +37,6 @@ export class EnvironmentServerConfigResponse extends BaseResponse {
|
||||||
this.vault = this.getResponseProperty("Vault");
|
this.vault = this.getResponseProperty("Vault");
|
||||||
this.api = this.getResponseProperty("Api");
|
this.api = this.getResponseProperty("Api");
|
||||||
this.identity = this.getResponseProperty("Identity");
|
this.identity = this.getResponseProperty("Identity");
|
||||||
this.admin = this.getResponseProperty("Admin");
|
|
||||||
this.notifications = this.getResponseProperty("Notifications");
|
this.notifications = this.getResponseProperty("Notifications");
|
||||||
this.sso = this.getResponseProperty("Sso");
|
this.sso = this.getResponseProperty("Sso");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue