I am using Django with Django REST framework as a backend and AngularJS on frontend.
For the user management I am using django-rest-auth which uses django-allauth for the user management. As the base I used demo from django-rest-auth.
The problem is after the sign up when you try to verify the email it sends email with activation url: 127.0.0.1:8000/account/confirm-email/yhca8kmijle0ia7k3p7ztbvnd2n1xepn9kyeuaycmlzll5xw19ubjarnvjrot7eu/
where *127.0.0.1:8000
is the Django backend.
But in my case it should send url something like localhost:9000/#/verifyEmail/akv2dcvrfnk9ex5fho9jk0xx1ggtpfazmi8sfsoi2sbscoezywfp7kzcyqnizrc0
.
So that this verification will be done from frontend, where localhost:9000
is my AngularJS frontend.
Is there any way of customizing activate_url on django-allauth?