Merge pull request #2836 from emanuelschuetze/createusercommand

Added groups_id to createopenslides user command.
This commit is contained in:
Norman Jäckel 2017-01-11 14:49:33 +01:00 committed by GitHub
commit 4a935bb641

View File

@ -26,10 +26,16 @@ class Command(BaseCommand):
'password', 'password',
help='The password of the new user.' help='The password of the new user.'
) )
parser.add_argument(
'groups_id',
help='The group id of the new user.'
)
def handle(self, *args, **options): def handle(self, *args, **options):
user_data = { user_data = {
'first_name': options['first_name'], 'first_name': options['first_name'],
'last_name': options['last_name'], 'last_name': options['last_name'],
} }
User.objects.create_user(options['username'], options['password'], **user_data) user = User.objects.create_user(options['username'], options['password'], **user_data)
if options['groups_id'].isdigit():
user.groups.add(int(options['groups_id']))