From 9848f12638e78b46d54897e3346166257cf36554 Mon Sep 17 00:00:00 2001 From: Addison Beck Date: Wed, 7 Oct 2020 15:03:47 -0400 Subject: [PATCH] enabled SSO when needed when upgrading from a free plan (#960) --- 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 dbf102dd56..badb0df2af 100644 --- a/src/Core/Services/Implementations/OrganizationService.cs +++ b/src/Core/Services/Implementations/OrganizationService.cs @@ -269,6 +269,7 @@ namespace Bit.Core.Services organization.UseTotp = newPlan.HasTotp; organization.Use2fa = newPlan.Has2fa; organization.UseApi = newPlan.HasApi; + organization.UseSso = newPlan.HasSso; organization.SelfHost = newPlan.HasSelfHost; organization.UsersGetPremium = newPlan.UsersGetPremium || upgrade.PremiumAccessAddon; organization.Plan = newPlan.Name;