From 211fb12d43be73da91b95ab65ab831294c6368b9 Mon Sep 17 00:00:00 2001 From: Martin Michalec Date: Fri, 4 Jun 2021 00:13:18 +0200 Subject: [PATCH] Make new users active by default --- django_etebase/admin-cli/management/commands/user-create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_etebase/admin-cli/management/commands/user-create.py b/django_etebase/admin-cli/management/commands/user-create.py index b1a345b..d149054 100755 --- a/django_etebase/admin-cli/management/commands/user-create.py +++ b/django_etebase/admin-cli/management/commands/user-create.py @@ -37,7 +37,7 @@ class Command(BaseCommand): , nargs='?' , type=argbool , const=True - , default=False + , default=True , help="Enable login. [YES]" ) parser.add_argument( '-s' , '--is_staff'