summaryrefslogtreecommitdiffstats
path: root/core/models
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-18 00:09:04 -0700
committerAndrew Godwin2022-11-18 00:09:04 -0700
commit1b44a253316a84f40070264ea8134c86d1223441 (patch)
tree2caa56d54a8e81f14649b826f9f3ef5a7c1326ae /core/models
parentb3072c81ba73a16381366960841b6c294cc1fa6e (diff)
downloadtakahe-1b44a253316a84f40070264ea8134c86d1223441.tar.gz
takahe-1b44a253316a84f40070264ea8134c86d1223441.tar.bz2
takahe-1b44a253316a84f40070264ea8134c86d1223441.zip
Signup and invite tweaks
Diffstat (limited to 'core/models')
-rw-r--r--core/models/config.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/models/config.py b/core/models/config.py
index 4ba8375..2a27d2e 100644
--- a/core/models/config.py
+++ b/core/models/config.py
@@ -160,7 +160,9 @@ class Config(models.Model):
site_icon: UploadedImage = static("img/icon-128.png")
site_banner: UploadedImage = static("img/fjords-banner-600.jpg")
- allow_signups: bool = False
+ signup_allowed: bool = False
+ signup_invite_only: bool = False
+ signup_text: str = ""
post_length: int = 500
identity_max_per_user: int = 5