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:
@ -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
|
||||
|
Reference in New Issue
Block a user