Skip to content

Instantly share code, notes, and snippets.

@brunomichetti
Created July 1, 2022 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunomichetti/f5d42170a1f4affe7ca37f42937391f2 to your computer and use it in GitHub Desktop.
Save brunomichetti/f5d42170a1f4affe7ca37f42937391f2 to your computer and use it in GitHub Desktop.
# Your urls file
...
from dj_rest_auth.views import PasswordResetConfirmView
...
urlpatterns = [
...
path(
'rest-auth/password/reset/confirm/<slug:uidb64>/<slug:token>/',
PasswordResetConfirmView.as_view(), name='password_reset_confirm'
),
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment