aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-08-14 08:04:02 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-08-14 08:04:02 +0200
commit56f4658b58c56dd1e5165be755e8144ba2fd4937 (patch)
tree6dbc339e69c5c20619778b78e2fa5c4c02fd68a5 /src/config.js
parentMerge branch 'develop' into feature/new-pricing (diff)
downloadferdium-app-56f4658b58c56dd1e5165be755e8144ba2fd4937.tar.gz
ferdium-app-56f4658b58c56dd1e5165be755e8144ba2fd4937.tar.zst
ferdium-app-56f4658b58c56dd1e5165be755e8144ba2fd4937.zip
remove monthly & yearly names
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js14
1 files changed, 6 insertions, 8 deletions
diff --git a/src/config.js b/src/config.js
index edcae9df1..66adedfc6 100644
--- a/src/config.js
+++ b/src/config.js
@@ -86,19 +86,17 @@ export const ALLOWED_PROTOCOLS = [
86]; 86];
87 87
88export const PLANS = { 88export const PLANS = {
89 PERSONAL_MONTHLY: 'PERSONAL_MONTHLY', 89 PERSONAL: 'PERSONAL_MONTHLY',
90 PERSONAL_YEARLY: 'PERSONAL_YEARLY', 90 PRO: 'PRO_MONTHLY',
91 PRO_MONTHLY: 'PRO_MONTHLY',
92 PRO_YEARLY: 'PRO_YEARLY',
93 LEGACY: 'LEGACY', 91 LEGACY: 'LEGACY',
94 FREE: 'FREE', 92 FREE: 'FREE',
95}; 93};
96 94
97export const PLANS_MAPPING = { 95export const PLANS_MAPPING = {
98 'franz-personal-monthly': PLANS.PERSONAL_MONTHLY, 96 'franz-personal-monthly': PLANS.PERSONAL,
99 'franz-personal-yearly': PLANS.PERSONAL_YEARLY, 97 'franz-personal-yearly': PLANS.PERSONAL,
100 'franz-pro-monthly': PLANS.PRO_MONTHLY, 98 'franz-pro-monthly': PLANS.PRO,
101 'franz-pro-yearly': PLANS.PRO_YEARLY, 99 'franz-pro-yearly': PLANS.PRO,
102 'franz-supporter-license': PLANS.LEGACY, 100 'franz-supporter-license': PLANS.LEGACY,
103 'franz-supporter-license-x1': PLANS.LEGACY, 101 'franz-supporter-license-x1': PLANS.LEGACY,
104 'franz-supporter-license-x2': PLANS.LEGACY, 102 'franz-supporter-license-x2': PLANS.LEGACY,