chore: fix subscription limit for course members

This commit is contained in:
Jannat Patel
2022-10-19 09:56:22 +05:30
parent 2ab0cb2787
commit 4ad457d568

View File

@@ -30,7 +30,7 @@ def get_add_on_courses(plan: str) -> int:
def get_add_on_members(plan: str) -> int:
MEMBER_LIMITS = {"Lite": 100, "Pro": 500}
MEMBER_LIMITS = {"Lite": 500, "Pro": 1000}
add_on_members = 0
members_included_in_plans = MEMBER_LIMITS.get(plan)