diff --git a/src/Api/settings.json b/src/Api/settings.json index 55b4e384a4..58e788b782 100644 --- a/src/Api/settings.json +++ b/src/Api/settings.json @@ -1,5 +1,6 @@ { "globalSettings": { + "selfHosted": false, "siteName": "bitwarden", "baseVaultUri": "http://localhost:4001/#", "baseApiUri": "http://localhost:4000", diff --git a/src/Billing/settings.json b/src/Billing/settings.json index bc815f5075..69c6708f07 100644 --- a/src/Billing/settings.json +++ b/src/Billing/settings.json @@ -1,5 +1,6 @@ { "globalSettings": { + "selfHosted": false, "siteName": "bitwarden", "baseVaultUri": "http://localhost:4001/#", "baseApiUri": "http://localhost:4000", diff --git a/src/Core/GlobalSettings.cs b/src/Core/GlobalSettings.cs index f218455440..24c225642a 100644 --- a/src/Core/GlobalSettings.cs +++ b/src/Core/GlobalSettings.cs @@ -2,6 +2,7 @@ { public class GlobalSettings { + public bool SelfHosted { get; set; } public virtual string SiteName { get; set; } public virtual string BaseVaultUri { get; set; } public virtual string BaseApiUri { get; set; } diff --git a/src/Identity/settings.json b/src/Identity/settings.json index 10a8d0d493..9edf9bd15f 100644 --- a/src/Identity/settings.json +++ b/src/Identity/settings.json @@ -1,5 +1,6 @@ { "globalSettings": { + "selfHosted": false, "siteName": "bitwarden", "baseVaultUri": "http://localhost:4001/#", "baseApiUri": "http://localhost:4000",