From 9a783f9f0cc53dd8762199524f9aa0694ba8e4ba Mon Sep 17 00:00:00 2001 From: Nazar Gargol Date: Thu, 27 Feb 2020 16:53:05 +0800 Subject: [PATCH] Revert "Added precaution to avoid creating multiple Complimentary plans" This reverts commit 5f0d2168f37726e76a3a12b79df3b07cd252ae8a. After discussing the best approach to multipe currency problem would be to allow creating multiple "Complimentary" plans. All security related checks should stay strictly based on name and would not cause issues. --- ghost/members-api/lib/stripe/index.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/ghost/members-api/lib/stripe/index.js b/ghost/members-api/lib/stripe/index.js index af079dd241..f387449781 100644 --- a/ghost/members-api/lib/stripe/index.js +++ b/ghost/members-api/lib/stripe/index.js @@ -36,11 +36,6 @@ module.exports = class StripePaymentProcessor { this._plans = []; for (const planSpec of config.plans) { - // NOTE: we have only one "Complimentary" plan throughout the system - if (planSpec.name === 'Complimentary' && planSpec.currency !== 'usd') { - return; - } - const plan = await api.plans.ensure(this._stripe, planSpec, this._product); this._plans.push(plan); }