From 6adfdbabe0d44c17f32abc9d48a6e252e2a0792e Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Thu, 17 Nov 2022 19:16:34 -0700 Subject: Add signup and password reset --- users/views/admin.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'users/views/admin.py') diff --git a/users/views/admin.py b/users/views/admin.py index d7f23e8..93bf4ec 100644 --- a/users/views/admin.py +++ b/users/views/admin.py @@ -62,6 +62,10 @@ class BasicPage(AdminSettingsPage): "title": "Site Banner", "help_text": "Must be at least 650px wide. 3:1 ratio of width:height recommended.", }, + "identity_max_per_user": { + "title": "Maximum Identities Per User", + "help_text": "Non-admins will be blocked from creating more than this", + }, } layout = { @@ -73,6 +77,7 @@ class BasicPage(AdminSettingsPage): "highlight_color", ], "Posts": ["post_length"], + "Identities": ["identity_max_per_user"], } -- cgit v1.2.3