Coverage for users\models.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

5 statements  

1from django.db import models 

2from django.contrib.auth.models import AbstractUser 

3 

4 

5class CustomUser(AbstractUser): 

6 # No extra fields right now 

7 def __str__(self): 

8 return self.email