settings: Set default free trial days for basic plan to 30 days.

This commit is contained in:
Aman Agrawal 2024-01-10 05:03:50 +00:00 committed by Tim Abbott
parent f285de39e9
commit f96d58cf02
2 changed files with 2 additions and 1 deletions

View File

@ -548,7 +548,7 @@ ARCHIVED_DATA_VACUUMING_DELAY_DAYS = 30
BILLING_ENABLED = False
CLOUD_FREE_TRIAL_DAYS: Optional[int] = int(get_secret("cloud_free_trial_days", "0"))
SELF_HOSTING_FREE_TRIAL_DAYS: Optional[int] = int(get_secret("self_hosting_free_trial_days", "0"))
SELF_HOSTING_FREE_TRIAL_DAYS: Optional[int] = int(get_secret("self_hosting_free_trial_days", "30"))
# Custom message (supports HTML) to be shown in the navbar of landing pages. Used mainly for
# making announcements.

View File

@ -259,6 +259,7 @@ RATE_LIMITING_RULES: Dict[str, List[Tuple[int, int]]] = {
}
CLOUD_FREE_TRIAL_DAYS: Optional[int] = None
SELF_HOSTING_FREE_TRIAL_DAYS: Optional[int] = None
SCIM_CONFIG: Dict[str, SCIMConfigDict] = {
"zulip": {