mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-04-03 21:40:27 +00:00
7 lines
160 B
Python
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')
|