From 644fd71d4fbc6305250cb70c08b1d27ff9a1a6f1 Mon Sep 17 00:00:00 2001 From: Fabien O'Carroll Date: Wed, 25 Sep 2019 10:08:48 +0700 Subject: [PATCH] Removed unused getPublicConfig method from stripe no-issue Don't use it you lose it! --- ghost/members-api/lib/stripe/index.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/ghost/members-api/lib/stripe/index.js b/ghost/members-api/lib/stripe/index.js index bfb435d687..5d5150bb64 100644 --- a/ghost/members-api/lib/stripe/index.js +++ b/ghost/members-api/lib/stripe/index.js @@ -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); }