0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Removed unused getPublicConfig method from stripe

no-issue

Don't use it you lose it!
This commit is contained in:
Fabien O'Carroll 2019-09-25 10:08:48 +07:00
parent 373f67a117
commit 644fd71d4f

View file

@ -52,16 +52,6 @@ module.exports = class StripePaymentProcessor {
});
}
getPublicConfig() {
return {
publicKey: this._public_token,
plans: this._plans.map(({id, currency, amount, interval, nickname}) => ({
id, currency, amount, interval,
name: nickname
}))
};
}
async parseWebhook(body, signature) {
return this._stripe.webhooks.constructEvent(body, signature, this._webhookSecret);
}