mirror of https://github.com/zulip/zulip.git
settings: Set default free trial days for basic plan to 30 days.
This commit is contained in:
parent
f285de39e9
commit
f96d58cf02
|
@ -548,7 +548,7 @@ ARCHIVED_DATA_VACUUMING_DELAY_DAYS = 30
|
||||||
BILLING_ENABLED = False
|
BILLING_ENABLED = False
|
||||||
|
|
||||||
CLOUD_FREE_TRIAL_DAYS: Optional[int] = int(get_secret("cloud_free_trial_days", "0"))
|
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
|
# Custom message (supports HTML) to be shown in the navbar of landing pages. Used mainly for
|
||||||
# making announcements.
|
# making announcements.
|
||||||
|
|
|
@ -259,6 +259,7 @@ RATE_LIMITING_RULES: Dict[str, List[Tuple[int, int]]] = {
|
||||||
}
|
}
|
||||||
|
|
||||||
CLOUD_FREE_TRIAL_DAYS: Optional[int] = None
|
CLOUD_FREE_TRIAL_DAYS: Optional[int] = None
|
||||||
|
SELF_HOSTING_FREE_TRIAL_DAYS: Optional[int] = None
|
||||||
|
|
||||||
SCIM_CONFIG: Dict[str, SCIMConfigDict] = {
|
SCIM_CONFIG: Dict[str, SCIMConfigDict] = {
|
||||||
"zulip": {
|
"zulip": {
|
||||||
|
|
Loading…
Reference in New Issue