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
2022-07-12 20:53:28 +00:00
AUTH_USER_MODEL = "customauth.MyUser"
INSTALLED_APPS = list(INSTALLED_APPS)
2022-07-12 20:53:28 +00:00
INSTALLED_APPS.append("customauth")