I am trying to create a password recovery flow using Django Rest Framework and Django-Allauth.
Django-Allauth already does everything i need, my question is can i programatically call a django-allauth function or view from DRF that receives the email i want to reset and continues with the rest of the normal allauth flow (like creating the temporary tokens and sending the email to the client?
I don't see the point on having to rewrite all that code if one of the apps is doing everything i need. just need some help on how to "glue" them :)
i figured it out
I added this to my DRF resource