diff --git a/src/Api/Models/Response/ConfigResponseModel.cs b/src/Api/Models/Response/ConfigResponseModel.cs index ad2d79a83cd1..019ee161c4e9 100644 --- a/src/Api/Models/Response/ConfigResponseModel.cs +++ b/src/Api/Models/Response/ConfigResponseModel.cs @@ -27,7 +27,6 @@ public ConfigResponseModel(IGlobalSettings globalSettings, string obj = "config" Vault = globalSettings.BaseServiceUri.Vault, Api = globalSettings.BaseServiceUri.Api, Identity = globalSettings.BaseServiceUri.Identity, - Admin = globalSettings.BaseServiceUri.Admin, Notifications = globalSettings.BaseServiceUri.Notifications, Sso = globalSettings.BaseServiceUri.Sso }; @@ -45,7 +44,6 @@ public class EnvironmentConfigResponseModel public string Vault { get; set; } public string Api { get; set; } public string Identity { get; set; } - public string Admin { get; set; } public string Notifications { get; set; } public string Sso { get; set; } }