From 7f02746f63e3277e2381d9f3959df808be772ccd Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Wed, 19 May 2021 21:59:16 +0100 Subject: [PATCH] admin: Re-disable 'limited' role (accidentally uncommented in c58ce8450) --- snikket_web/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snikket_web/admin.py b/snikket_web/admin.py index fbe0a1b..0d24928 100644 --- a/snikket_web/admin.py +++ b/snikket_web/admin.py @@ -73,7 +73,7 @@ class EditUserForm(BaseForm): choices=[ # NOTE: enable this only after something has been done which # actually enforces the described restrictions :). - ("prosody:restricted", _LIMITED_ROLE_NAME), + # ("prosody:restricted", _LIMITED_ROLE_NAME), ("prosody:normal", _l("Normal user")), ("prosody:admin", _l("Administrator")), ],