From 58798f65d9352248c6ef62d80caac52890d6c389 Mon Sep 17 00:00:00 2001 From: Nathan Zeager <108411172+nzeager@users.noreply.github.com> Date: Sat, 14 Oct 2023 08:12:53 -0400 Subject: [PATCH] Password reset email url (#159) * Hotfix build celery code * Added DOMAIN and SITE_NAME to settings to get correct url for reset password email --- config/settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/settings.py b/config/settings.py index cae59e8..5d816ea 100644 --- a/config/settings.py +++ b/config/settings.py @@ -206,6 +206,9 @@ ), } +DOMAIN = 'momentors.dev' +SITE_NAME = 'Momentors' + DJOSER = { 'USER_CREATE_PASSWORD_RETYPE': True, 'PASSWORD_RESET_CONFIRM_URL': 'password/reset/confirm/{uid}/{token}',