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:
parent
7872355962
commit
ebaf9538b6
1 changed files with 2 additions and 1 deletions
|
@ -10,7 +10,8 @@ const CURRENCY_SYMBOLS = {
|
|||
aud: '$',
|
||||
cad: '$',
|
||||
gbp: '£',
|
||||
eur: '€'
|
||||
eur: '€',
|
||||
inr: '₹'
|
||||
};
|
||||
|
||||
module.exports = class StripePaymentProcessor {
|
||||
|
|
Loading…
Add table
Reference in a new issue