mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -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>()
|
var planTypes = Enum.GetValues<PlanType>()
|
||||||
.Where(p =>
|
.Where(p =>
|
||||||
Model.Provider == null ||
|
(Model.Provider == null ||
|
||||||
(Model.Provider != null
|
p is >= PlanType.TeamsMonthly2019 and <= PlanType.EnterpriseAnnually2019 or
|
||||||
&& p is >= PlanType.TeamsMonthly2019 and <= PlanType.EnterpriseAnnually2019 or >= PlanType.TeamsMonthly2020 and <= PlanType.EnterpriseAnnually)
|
>= PlanType.TeamsMonthly2020 and <= PlanType.EnterpriseAnnually) &&
|
||||||
|
p != PlanType.TeamsStarter
|
||||||
)
|
)
|
||||||
.Select(e => new SelectListItem
|
.Select(e => new SelectListItem
|
||||||
{
|
{
|
||||||
|
@ -28,6 +28,8 @@ public record TeamsStarterPlan : Plan
|
|||||||
|
|
||||||
PasswordManager = new TeamsStarterPasswordManagerFeatures();
|
PasswordManager = new TeamsStarterPasswordManagerFeatures();
|
||||||
SecretsManager = new TeamsStarterSecretsManagerFeatures();
|
SecretsManager = new TeamsStarterSecretsManagerFeatures();
|
||||||
|
|
||||||
|
LegacyYear = 2024;
|
||||||
}
|
}
|
||||||
|
|
||||||
private record TeamsStarterSecretsManagerFeatures : SecretsManagerPlanFeatures
|
private record TeamsStarterSecretsManagerFeatures : SecretsManagerPlanFeatures
|
||||||
|
Loading…
x
Reference in New Issue
Block a user