Advertisement
Guest User

Untitled

a guest
Aug 15th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class User(AbstractUser):
  2.     username = None
  3.     email = models.EmailField(_('email address'), unique=True)
  4.    
  5.     # this is the magic!
  6.     is_active = models.BooleanField(default=False)
  7.  
  8.     USERNAME_FIELD = 'email'
  9.     REQUIRED_FIELDS = []
  10.  
  11.     objects = UserManager()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement