mirror of
https://github.com/lemeow125/EquipmentTracker-Backend.git
synced 2024-11-17 06:09:26 +08:00
Pre-generate accounts as technicians by default
This commit is contained in:
parent
3a5f872c67
commit
079b88fe7f
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ def create_superuser(sender, **kwargs):
|
||||||
if not User.objects.filter(username=username).exists():
|
if not User.objects.filter(username=username).exists():
|
||||||
# Create the superuser with is_active set to False
|
# Create the superuser with is_active set to False
|
||||||
superuser = User.objects.create_superuser(
|
superuser = User.objects.create_superuser(
|
||||||
username=username, email=email, password=password, first_name=first_name, last_name=last_name)
|
username=username, email=email, password=password, first_name=first_name, last_name=last_name, is_technician=True)
|
||||||
|
|
||||||
# Activate the superuser
|
# Activate the superuser
|
||||||
superuser.is_active = True
|
superuser.is_active = True
|
||||||
|
|
Loading…
Reference in a new issue