From 4826b4b8b7d7171a77fc6db08b22fb1c0a44b29a Mon Sep 17 00:00:00 2001 From: Razmig Sarkissian Date: Mon, 29 Sep 2025 15:53:40 +0200 Subject: [PATCH] Add debug print statement for Stripe account link base path --- api/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api/views.py b/api/views.py index 439a86e..1e7b9c8 100644 --- a/api/views.py +++ b/api/views.py @@ -1,3 +1,4 @@ +from pandas.core.groupby import base from rest_framework import viewsets from rest_framework.response import Response from rest_framework.decorators import api_view, permission_classes @@ -520,7 +521,7 @@ def create_stripe_account_link(request): try: base_path = f"{request.scheme}://{request.get_host()}" - + print("create_stripe_account_link", base_path) refresh_url = f"{base_path}/stripe-refresh-account-link/" return_url = f"{base_path}/stripe-onboarding-complete/"