Skip to content

Commit

Permalink
Fix password reset path
Browse files Browse the repository at this point in the history
Closes #63
  • Loading branch information
Gabriel Y C Chan authored and ppaeps committed Mar 6, 2024
1 parent 30d768f commit f8bb67f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hackman/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def robots(request: HttpRequest) -> HttpResponse:
name="password_reset_done",
),
re_path(
"reset/(?P<uidb64>[0-9A-Za-z_-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/", # noqa
"reset/(?P<uidb64>[0-9A-Za-z_-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,32})/",
auth_views.PasswordResetConfirmView.as_view(),
name="password_reset_confirm",
),
Expand Down

0 comments on commit f8bb67f

Please sign in to comment.