mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-29 13:52:10 +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: '$',
|
AUD: '$',
|
||||||
CAD: '$',
|
CAD: '$',
|
||||||
GBP: '£',
|
GBP: '£',
|
||||||
EUR: '€'
|
EUR: '€',
|
||||||
|
INR: '₹'
|
||||||
};
|
};
|
||||||
const defaultPriceData = {
|
const defaultPriceData = {
|
||||||
monthly: 0,
|
monthly: 0,
|
||||||
|
@ -53,7 +53,8 @@ class MembersConfigProvider {
|
|||||||
AUD: '$',
|
AUD: '$',
|
||||||
CAD: '$',
|
CAD: '$',
|
||||||
GBP: '£',
|
GBP: '£',
|
||||||
EUR: '€'
|
EUR: '€',
|
||||||
|
INR: '₹'
|
||||||
};
|
};
|
||||||
const defaultPriceData = {
|
const defaultPriceData = {
|
||||||
monthly: 0,
|
monthly: 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user