django-fobi/examples/simple/settings/custom_user_model.py

8 lines
160 B
Python
Raw Normal View History

2016-10-17 01:30:09 +00:00
from .base import *
# Using custom user model
AUTH_USER_MODEL = 'customauth.MyUser'
INSTALLED_APPS = list(INSTALLED_APPS)
INSTALLED_APPS.append('customauth')