This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
urlpatterns = [ | |
# this path is used to generate email content for password reset request | |
# from dj-rest-auth API; format is same as used by default django auth so | |
# the generated URL must be translated to be used with allauth | |
path('accounts/password/reset/key/api/<uidb64>/<token>/', | |
user.ApiPasswordResetView.as_view(), | |
name='password_reset_confirm'), | |
] |