django-allauth-ens/example/app/models.py
Aurélien Delobelle 9449481bd4 Add example project
2017-08-03 12:41:30 +02:00

11 lines
240 B
Python

from django.contrib.auth.models import AbstractUser, UserManager
# from authens.models import ENSUserMixin
"""
class User(ENSUserMixin, AbstractUser):
objects = UserManager()
"""
class User(AbstractUser):
objects = UserManager()