Fixed bug: incorrect user class

This commit is contained in:
Viswamedha Nalabotu 2026-02-26 11:12:49 +00:00
parent 972194be0a
commit f69d9f3e1d

View file

@ -1,5 +1,5 @@
from django.core.management.base import BaseCommand from django.core.management.base import BaseCommand
from django.contrib.auth.models import User from accounts.models import User
class Command(BaseCommand): class Command(BaseCommand):
help = 'Resets non-admin account passwords to "password" and admin account passwords to "admin" using the current SECRET_KEY' help = 'Resets non-admin account passwords to "password" and admin account passwords to "admin" using the current SECRET_KEY'