🐛(backend) add missing Django settings

Fixed an issue where a setting cloned from Joanie was missing
in the  Django configuration. Although its value was provided, it was
not applied due to the missing reference in the settings file.
This commit is contained in:
lebaudantoine
2024-09-23 18:09:43 +02:00
committed by aleb_the_flash
parent 0e5c2be445
commit db8445f4ab

View File

@@ -258,6 +258,7 @@ class Base(Configuration):
EMAIL_HOST_PASSWORD = values.Value(None)
EMAIL_PORT = values.PositiveIntegerValue(None)
EMAIL_USE_TLS = values.BooleanValue(False)
EMAIL_USE_SSL = values.BooleanValue(False)
EMAIL_FROM = values.Value("from@example.com")
AUTH_USER_MODEL = "core.User"