0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-18 02:21:47 -05:00

Adding INR currency support

- 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
This commit is contained in:
Hannah Wolfe 2020-06-08 11:30:30 +01:00
parent 7872355962
commit ebaf9538b6

View file

@ -10,7 +10,8 @@ const CURRENCY_SYMBOLS = {
aud: '$',
cad: '$',
gbp: '£',
eur: '€'
eur: '€',
inr: '₹'
};
module.exports = class StripePaymentProcessor {