mirror of
https://github.com/bitwarden/server
synced 2025-12-28 22:23:30 +00:00
* [PM-2594] Added new property "CloudVault" to GlobalSettings and ConfigResponseModel to be able to override this value for selfhost instances * [PM-2594] Renamed EnvironmentConfigResponseModel.CloudVault to CloudWebVault * [PM-2594] Added default value for globalSettings__baseServiceUri__cloudWebVault on EnvironmentFileBuilder * [PM-2594] Erased CloudWebVault environment variable and added CloudVaultRegion * [PM-2594] Changed var name on EnvironmentFileBuilder * [PM-2594] Renamed the env. variable and also the output property to CloudRegion
23 lines
736 B
C#
23 lines
736 B
C#
|
|
namespace Bit.Core.Settings;
|
|
|
|
public interface IBaseServiceUriSettings
|
|
{
|
|
string CloudRegion { get; set; }
|
|
string Vault { get; set; }
|
|
string VaultWithHash { get; }
|
|
string Api { get; set; }
|
|
public string Identity { get; set; }
|
|
public string Admin { get; set; }
|
|
public string Notifications { get; set; }
|
|
public string Sso { get; set; }
|
|
public string Scim { get; set; }
|
|
public string InternalNotifications { get; set; }
|
|
public string InternalAdmin { get; set; }
|
|
public string InternalIdentity { get; set; }
|
|
public string InternalApi { get; set; }
|
|
public string InternalVault { get; set; }
|
|
public string InternalSso { get; set; }
|
|
public string InternalScim { get; set; }
|
|
}
|