From 22fb6a357f1b6b91f04a180604e2f992280ee661 Mon Sep 17 00:00:00 2001 From: clarkzjw Date: Tue, 21 Feb 2023 16:46:11 -0800 Subject: add django app template --- checkin/settings.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'checkin/settings.py') diff --git a/checkin/settings.py b/checkin/settings.py index 6fa12a2..8d74770 100644 --- a/checkin/settings.py +++ b/checkin/settings.py @@ -31,6 +31,7 @@ ALLOWED_HOSTS = [] # Application definition INSTALLED_APPS = [ + 'bot.apps.BotConfig', 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', @@ -99,6 +100,7 @@ AUTH_PASSWORD_VALIDATORS = [ }, ] +AUTH_USER_MODEL = 'bot.User' # Internationalization # https://docs.djangoproject.com/en/4.1/topics/i18n/ -- cgit v1.2.3