django-fobi/examples/simple/settings/custom_user_model.py
2016-10-17 03:30:09 +02:00

7 lines
160 B
Python

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