tweaks: Update setting defaults.

`video_grace_period` now 90 seconds.
`task_limit` now 99.
`rent_member_limit` now 24.

Also updated `Integer` default `_min` and `_max` to match DB values.
This commit is contained in:
2022-01-14 19:45:24 +02:00
parent 50da6b18d2
commit 24791867cf
4 changed files with 5 additions and 5 deletions

View File

@@ -130,8 +130,8 @@ class Integer(SettingType):
accepts = "An integer."
# Set limits on the possible integers
_min = -4096
_max = 4096
_min = -2147483647
_max = 2147483647
@classmethod
def _data_from_value(cls, id: int, value: Optional[bool], **kwargs):