diff --git a/backend/backend_api/views.py b/backend/backend_api/views.py index 9cee2d8..82f26fb 100644 --- a/backend/backend_api/views.py +++ b/backend/backend_api/views.py @@ -208,7 +208,7 @@ def activate(self, request): status.HTTP_400_BAD_REQUEST, "Token didn't match with any user")) account.is_active = True account.save() - return redirect(urllib.parse.urljoin(BASE_URL, 'signup')) + return redirect(urllib.parse.urljoin(BASE_URL, 'signup') + '?login=true') class PaymentViewSet(viewsets.GenericViewSet):