From 37442ff82991f07d77fd530e5ae37c78f6a68ef5 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 17 Feb 2025 18:10:48 -0800 Subject: [PATCH] Fix: include account confirm email (#9147) --- src/paperless/urls.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/paperless/urls.py b/src/paperless/urls.py index e5a6065be..fa237fe5c 100644 --- a/src/paperless/urls.py +++ b/src/paperless/urls.py @@ -305,6 +305,11 @@ urlpatterns = [ ], ), ), + re_path( + r"^confirm-email/(?P[-:\w]+)/$", + allauth_account_views.ConfirmEmailView.as_view(), + name="account_confirm_email", + ), re_path( r"^password/reset/key/(?P[0-9A-Za-z]+)-(?P.+)/$", allauth_account_views.password_reset_from_key,