Jan Dittberner
f9ea88cd24
This commit adds a new model that enhances the user profile with an offline support code, a postal address and an email address to allow users to reset their profile. The commit adds to Django admin commands 'populate' and 'reset_offline_code' to maintain the help user profiles from the Django command line.
17 lines
625 B
Python
17 lines
625 B
Python
from django.contrib.auth import get_user_model
|
|
from django.core.management import BaseCommand
|
|
|
|
from help.models import HelpUser
|
|
|
|
User = get_user_model()
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = "Populate help user information for existing users"
|
|
|
|
def handle(self, *args, **options):
|
|
for user in User.objects.filter(helpuser=None):
|
|
help_user = HelpUser.objects.create(user_id=user.id, email_address=user.email)
|
|
help_user.generate_offline_account_code()
|
|
help_user.save()
|
|
self.stdout.write(f"created offline account code {help_user.offline_account_code} for {user}.")
|