mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-28 05:14:12 +03: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:
parent
424e43975c
commit
edff7ac853
@ -52,7 +52,8 @@ function haxGetMembersPriceData() {
|
||||
AUD: '$',
|
||||
CAD: '$',
|
||||
GBP: '£',
|
||||
EUR: '€'
|
||||
EUR: '€',
|
||||
INR: '₹'
|
||||
};
|
||||
const defaultPriceData = {
|
||||
monthly: 0,
|
||||
|
@ -53,7 +53,8 @@ class MembersConfigProvider {
|
||||
AUD: '$',
|
||||
CAD: '$',
|
||||
GBP: '£',
|
||||
EUR: '€'
|
||||
EUR: '€',
|
||||
INR: '₹'
|
||||
};
|
||||
const defaultPriceData = {
|
||||
monthly: 0,
|
||||
|
Loading…
Reference in New Issue
Block a user