I'm trying to use django-rest-auth password reset feature but after a post request at /rest-auth/password/reset/
i get the error stated in the title (Traceback) and i don't understand why. I followed the installation procedure from the documentation page. My urls.py
is:
from django.urls import include, path
urlpatterns = [
path('users/', include('users.urls')),
path('rest-auth/', include('rest_auth.urls')),
path('rest-auth/registration/', include('rest_auth.registration.urls')),
I also added the required apps in settings.py