]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix: include account confirm email (#9147)
authorshamoon <4887959+shamoon@users.noreply.github.com>
Tue, 18 Feb 2025 02:10:48 +0000 (18:10 -0800)
committerGitHub <noreply@github.com>
Tue, 18 Feb 2025 02:10:48 +0000 (18:10 -0800)
src/paperless/urls.py

index e5a6065bef3c72cdde83d558aa628c6dc8c15fdd..fa237fe5cc7e2dba748e0b48a7b705cd46116df1 100644 (file)
@@ -305,6 +305,11 @@ urlpatterns = [
                         ],
                     ),
                 ),
+                re_path(
+                    r"^confirm-email/(?P<key>[-:\w]+)/$",
+                    allauth_account_views.ConfirmEmailView.as_view(),
+                    name="account_confirm_email",
+                ),
                 re_path(
                     r"^password/reset/key/(?P<uidb36>[0-9A-Za-z]+)-(?P<key>.+)/$",
                     allauth_account_views.password_reset_from_key,