mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
Hiding teams starter option (#4044)
This commit is contained in:
parent
3bb8cce2e6
commit
0b5c21acca
@ -70,9 +70,10 @@
|
||||
@{
|
||||
var planTypes = Enum.GetValues<PlanType>()
|
||||
.Where(p =>
|
||||
Model.Provider == null ||
|
||||
(Model.Provider != null
|
||||
&& p is >= PlanType.TeamsMonthly2019 and <= PlanType.EnterpriseAnnually2019 or >= PlanType.TeamsMonthly2020 and <= PlanType.EnterpriseAnnually)
|
||||
(Model.Provider == null ||
|
||||
p is >= PlanType.TeamsMonthly2019 and <= PlanType.EnterpriseAnnually2019 or
|
||||
>= PlanType.TeamsMonthly2020 and <= PlanType.EnterpriseAnnually) &&
|
||||
p != PlanType.TeamsStarter
|
||||
)
|
||||
.Select(e => new SelectListItem
|
||||
{
|
||||
|
@ -28,6 +28,8 @@ public record TeamsStarterPlan : Plan
|
||||
|
||||
PasswordManager = new TeamsStarterPasswordManagerFeatures();
|
||||
SecretsManager = new TeamsStarterSecretsManagerFeatures();
|
||||
|
||||
LegacyYear = 2024;
|
||||
}
|
||||
|
||||
private record TeamsStarterSecretsManagerFeatures : SecretsManagerPlanFeatures
|
||||
|
Loading…
x
Reference in New Issue
Block a user