Change post length limit to 100,000

This commit is contained in:
Kay Faraday 2024-07-28 16:01:30 -07:00
parent 024b01a144
commit 4127d0965f
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ class Config(models.Model):
signup_email_admins: bool = True
content_warning_text: str = "Content Warning"
post_length: int = 500
post_length: int = 100_000
max_media_attachments: int = 4
post_minimum_interval: int = 3 # seconds
identity_min_length: int = 2