password change command

This commit is contained in:
André Böhlke 2016-10-12 16:26:19 +02:00
parent 447339ec33
commit cced97d9fb
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
from django.core.management.base import BaseCommand
from openslides.users.models import User
class Command(BaseCommand):
"""
Command to change a user's password.
"""
help = 'Changes user password.'
def add_arguments(self, parser):
parser.add_argument(
'username',
help='The name of the user to set the password for'
)
parser.add_argument(
'password',
help='The new password of the user'
)
def handle(self, *args, **options):
user = User.objects.get(username=options['username'])
user.set_password(options['password'])
user.save()