1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01: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:05 +01:00
parent ef59dbf74d
commit a4a892a93e

View file

@ -23,6 +23,9 @@ const CURRENCIES = [
},
{
label: 'GBP - British Pound', value: 'gbp'
},
{
label: 'INR - Indian Rupee', value: 'inr'
}
];