From ebaf9538b6aca58c25b64c80c99f36fe4e265dce Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Mon, 8 Jun 2020 11:30:30 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Adding=20INR=20currency=20support?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - We have many customers asking for INR as there are special rules in Stripe for this currency - As well as a desire for local-selling - Meaning it's not valid to use e.g. USD instead --- ghost/members-api/lib/stripe/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghost/members-api/lib/stripe/index.js b/ghost/members-api/lib/stripe/index.js index e418e7479b..c58cd53fd2 100644 --- a/ghost/members-api/lib/stripe/index.js +++ b/ghost/members-api/lib/stripe/index.js @@ -10,7 +10,8 @@ const CURRENCY_SYMBOLS = { aud: '$', cad: '$', gbp: '£', - eur: '€' + eur: '€', + inr: '₹' }; module.exports = class StripePaymentProcessor {