1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 23:52:50 -05:00

Remove the admin field from the config object (#2252)

This commit is contained in:
Colton Hurst
2022-09-08 10:47:19 -04:00
committed by GitHub
parent 6a0e134129
commit e2eb0de384

View File

@ -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; }
}