Fix: include account confirm email

This commit is contained in:
shamoon 2025-02-17 18:04:18 -08:00
parent de5f66b3a0
commit 8bc1f4aad4
No known key found for this signature in database

View 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,