WIP: Cleanup
This commit is contained in:
parent
715224653d
commit
6ee942f8dc
37 changed files with 547 additions and 2591 deletions
19
gurps_character/TestData/characters.py
Normal file
19
gurps_character/TestData/characters.py
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
from django.contrib.auth.models import User
|
||||
|
||||
|
||||
def create_users():
|
||||
User.objects.create(
|
||||
username="neill",
|
||||
is_superuser=True,
|
||||
first_name="Neill",
|
||||
last_name="Cox",
|
||||
email="neill@neill.id.au",
|
||||
is_staff=True,
|
||||
is_active=True,
|
||||
date_joined="2024-07-31T00:00:00.000Z",
|
||||
|
||||
)
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
create_users()
|
||||
Loading…
Add table
Add a link
Reference in a new issue