Fixed user serializer still using django default user

This commit is contained in:
Keannu Christian Bernasol 2023-07-03 21:22:06 +08:00
parent 05d9dbd296
commit e567b5d399
4 changed files with 50 additions and 12 deletions

View file

@ -29,7 +29,7 @@ SECRET_KEY = str(os.getenv('SECRET_KEY'))
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = ['127.0.0.1', 'localhost']
ALLOWED_HOSTS = ['*', '127.0.0.1', 'localhost', '10.0.10.32', '10.0.10.8']
# Email credentials
EMAIL_HOST = ''