From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 18 Feb 2025 02:10:48 +0000 (-0800) Subject: Fix: include account confirm email (#9147) X-Git-Tag: v2.15.0-beta.rc1~93 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37442ff82991f07d77fd530e5ae37c78f6a68ef5;p=thirdparty%2Fpaperless-ngx.git Fix: include account confirm email (#9147) --- 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,