1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-20 00:47:16 -05:00

fix: flip bool condition and make it nullable

This commit is contained in:
tangowithfoxtrot
2024-10-28 12:45:32 -07:00
parent 1d87ba3a46
commit 02393835f8
3 changed files with 8 additions and 6 deletions

View File

@ -97,8 +97,8 @@ public class Configuration
[Description("Enable SCIM")]
public bool EnableScim { get; set; } = false;
[Description("Disable Built-In MSSQL Container Generation")]
public bool DisableBuiltInMsSql { get; set; }
[Description("Enable Built-In MSSQL Container Generation")]
public bool? EnableBuiltInMsSql { get; set; } = true;
[YamlIgnore]
public string Domain