corporate: Add a Basic plan.

This commit is contained in:
Karl Stolley
2023-12-18 16:57:32 -06:00
committed by Tim Abbott
parent 3a0be097f4
commit a37354f92a
13 changed files with 216 additions and 92 deletions

View File

@@ -81,6 +81,7 @@ def get_plan_type_string(plan_type: int) -> str:
CustomerPlan.TIER_SELF_HOSTED_LEGACY
),
RemoteZulipServer.PLAN_TYPE_COMMUNITY: "Community",
RemoteZulipServer.PLAN_TYPE_BASIC: "Basic",
RemoteZulipServer.PLAN_TYPE_BUSINESS: "Business",
RemoteZulipServer.PLAN_TYPE_ENTERPRISE: "Enterprise",
}[plan_type]