aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'checkin/settings.py')
-rw-r--r--checkin/settings.py2
1 files changed, 2 insertions, 0 deletions
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 = []
31# Application definition 31# Application definition
32 32
33INSTALLED_APPS = [ 33INSTALLED_APPS = [
34 'bot.apps.BotConfig',
34 'django.contrib.admin', 35 'django.contrib.admin',
35 'django.contrib.auth', 36 'django.contrib.auth',
36 'django.contrib.contenttypes', 37 'django.contrib.contenttypes',
@@ -99,6 +100,7 @@ AUTH_PASSWORD_VALIDATORS = [
99 }, 100 },
100] 101]
101 102
103AUTH_USER_MODEL = 'bot.User'
102 104
103# Internationalization 105# Internationalization
104# https://docs.djangoproject.com/en/4.1/topics/i18n/ 106# https://docs.djangoproject.com/en/4.1/topics/i18n/
Powered by cgit v1.2.3 (git 2.41.0)