1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-25 12:45:18 +01:00

Showing Teams Starter option in org edit dropdown in the admin portal if user is on that plan (#4187)

This commit is contained in:
Conner Turnbull 2024-06-21 13:53:10 -04:00 committed by GitHub
parent f275b2567d
commit 5fd9ab5fa5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -74,7 +74,7 @@
(Model.Provider == null ||
p is >= PlanType.TeamsMonthly2019 and <= PlanType.EnterpriseAnnually2019 or
>= PlanType.TeamsMonthly2020 and <= PlanType.EnterpriseAnnually) &&
p != PlanType.TeamsStarter
(Model.PlanType == PlanType.TeamsStarter || p is not PlanType.TeamsStarter)
)
.Select(e => new SelectListItem
{