From 7b91fe55f0d15767dc04d5afcb9d18dbb5a02259 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 3 Mar 2020 22:32:59 -0500 Subject: [PATCH] set `UsePolicies` on license update --- src/Core/Services/Implementations/OrganizationService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Core/Services/Implementations/OrganizationService.cs b/src/Core/Services/Implementations/OrganizationService.cs index e571ca6984..be14e2228a 100644 --- a/src/Core/Services/Implementations/OrganizationService.cs +++ b/src/Core/Services/Implementations/OrganizationService.cs @@ -717,6 +717,7 @@ namespace Bit.Core.Services organization.UseTotp = license.UseTotp; organization.Use2fa = license.Use2fa; organization.UseApi = license.UseApi; + organization.UsePolicies = license.UsePolicies; organization.SelfHost = license.SelfHost; organization.UsersGetPremium = license.UsersGetPremium; organization.Plan = license.Plan;