Changed manage subscription return url

This commit is contained in:
Vins 2024-04-04 15:03:17 +02:00
parent 584f7bac57
commit 4c6aed8c62

View File

@ -42,7 +42,7 @@ export default class StripeService {
return this.client.billingPortal.sessions.create({ return this.client.billingPortal.sessions.create({
customer: subscription.customer as string, customer: subscription.customer as string,
return_url: this.variables.STRIPE_PAYMENT_SUCCESS_URL, return_url: this.variables.APP_HOST + "/subscription/manage",
}); });
} }
} }