Skip to content

Commit d4581b0

Browse files
authored
Remove admin url from config object (#3479)
1 parent bbd7ff3 commit d4581b0

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

Diff for: libs/common/src/models/data/server-config.data.ts

-2
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,13 @@ export class EnvironmentServerConfigData {
3838
vault: string;
3939
api: string;
4040
identity: string;
41-
admin: string;
4241
notifications: string;
4342
sso: string;
4443

4544
constructor(response: EnvironmentServerConfigResponse) {
4645
this.vault = response.vault;
4746
this.api = response.api;
4847
this.identity = response.identity;
49-
this.admin = response.admin;
5048
this.notifications = response.notifications;
5149
this.sso = response.sso;
5250
}

Diff for: libs/common/src/models/response/server-config-response.ts

-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export class EnvironmentServerConfigResponse extends BaseResponse {
2424
vault: string;
2525
api: string;
2626
identity: string;
27-
admin: string;
2827
notifications: string;
2928
sso: string;
3029

@@ -38,7 +37,6 @@ export class EnvironmentServerConfigResponse extends BaseResponse {
3837
this.vault = this.getResponseProperty("Vault");
3938
this.api = this.getResponseProperty("Api");
4039
this.identity = this.getResponseProperty("Identity");
41-
this.admin = this.getResponseProperty("Admin");
4240
this.notifications = this.getResponseProperty("Notifications");
4341
this.sso = this.getResponseProperty("Sso");
4442
}

0 commit comments

Comments
 (0)