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,