clone from upstream lithium project
This commit is contained in:
parent
6f5167c24f
commit
f946e4933a
56 changed files with 754 additions and 503 deletions
8
accounts/models.py
Normal file
8
accounts/models.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
from django.contrib.auth.models import AbstractUser
|
||||
from django.db import models
|
||||
|
||||
class CustomUser(AbstractUser):
|
||||
pass
|
||||
|
||||
def __str__(self):
|
||||
return self.email
|
||||
Loading…
Add table
Add a link
Reference in a new issue