diff --git a/src/licenseGen/Program.cs b/src/licenseGen/Program.cs index 963586c..160463f 100644 --- a/src/licenseGen/Program.cs +++ b/src/licenseGen/Program.cs @@ -438,7 +438,9 @@ internal class Program Set("LicenseType", Enum.Parse(licenseTypeEnum, "Organization")); Set("LimitCollectionCreationDeletion", true); //This will be used in the new version of BitWarden but can be applied now Set("AllowAdminAccessToAllCollectionItems", true); - + Set("UseRiskInsights", true); + Set("UseOrganizationDomains", true); + Set("UseAdminSponsoredFamilies", true); Set("Hash", Convert.ToBase64String((Byte[])type.GetMethod("ComputeHash").Invoke(license, []))); Set("Signature", Convert.ToBase64String((Byte[])type.GetMethod("Sign").Invoke(license, [cert]))); @@ -450,4 +452,4 @@ internal class Program type.GetProperty(name)?.SetValue(license, value); } } -} \ No newline at end of file +}