0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Adding INR currency support (#11911)

- 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-12 19:36:25 +01:00 committed by GitHub
parent 424e43975c
commit edff7ac853
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -52,7 +52,8 @@ function haxGetMembersPriceData() {
AUD: '$',
CAD: '$',
GBP: '£',
EUR: '€'
EUR: '€',
INR: '₹'
};
const defaultPriceData = {
monthly: 0,

View file

@ -53,7 +53,8 @@ class MembersConfigProvider {
AUD: '$',
CAD: '$',
GBP: '£',
EUR: '€'
EUR: '€',
INR: '₹'
};
const defaultPriceData = {
monthly: 0,