django-fobi/examples/simple/settings_custom_user_model.py

8 lines
163 B
Python
Raw Normal View History

from settings import *
# Using custom user model
AUTH_USER_MODEL = 'customauth.MyUser'
INSTALLED_APPS = list(INSTALLED_APPS)
INSTALLED_APPS.append('customauth')