From e2eb0de3842c1b1d2c77298427da633357711706 Mon Sep 17 00:00:00 2001 From: Colton Hurst Date: Thu, 8 Sep 2022 10:47:19 -0400 Subject: [PATCH] Remove the admin field from the config object (#2252) --- src/Api/Models/Response/ConfigResponseModel.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Api/Models/Response/ConfigResponseModel.cs b/src/Api/Models/Response/ConfigResponseModel.cs index ad2d79a83c..019ee161c4 100644 --- a/src/Api/Models/Response/ConfigResponseModel.cs +++ b/src/Api/Models/Response/ConfigResponseModel.cs @@ -27,7 +27,6 @@ public class ConfigResponseModel : ResponseModel 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; } }