mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
Fixed default urls for checkout session
no-issue
related to ef9cb0862c
In the last patch which fixes the bug for not passing custom redirect urls when a checkout session is created, we missed updating the case where a logged in member tries to update the subscription.
This commit is contained in:
parent
f823334b15
commit
4b4a990e1d
@ -271,8 +271,8 @@ module.exports = class RouterController {
|
||||
|
||||
try {
|
||||
const session = await this._stripeAPIService.createCheckoutSession(plan, stripeCustomer, {
|
||||
successUrl: req.body.successUrl,
|
||||
cancelUrl: req.body.cancelUrl,
|
||||
successUrl: req.body.successUrl || this._config.checkoutSuccessUrl,
|
||||
cancelUrl: req.body.cancelUrl || this._config.checkoutCancelUrl,
|
||||
metadata: req.body.metadata
|
||||
});
|
||||
const publicKey = this._stripeAPIService.getPublicKey();
|
||||
|
Loading…
Reference in New Issue
Block a user