aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2020-01-02 14:33:57 +0100
committerLibravatar vantezzen <hello@vantezzen.io>2020-01-02 14:33:57 +0100
commit5aff6ab34a2f0d60d8cccdfe244e62e3256dbc15 (patch)
tree3f7530b7c14d2111800fe644a5a4ea210f55df54 /app/Controllers
parentUpdate feature list for Ferdi 5.4.0 (diff)
downloadferdium-server-5aff6ab34a2f0d60d8cccdfe244e62e3256dbc15.tar.gz
ferdium-server-5aff6ab34a2f0d60d8cccdfe244e62e3256dbc15.tar.zst
ferdium-server-5aff6ab34a2f0d60d8cccdfe244e62e3256dbc15.zip
Update feautre list for 5.4.0
Diffstat (limited to 'app/Controllers')
-rw-r--r--app/Controllers/Http/StaticController.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/app/Controllers/Http/StaticController.js b/app/Controllers/Http/StaticController.js
index 2e424e1..cd3b752 100644
--- a/app/Controllers/Http/StaticController.js
+++ b/app/Controllers/Http/StaticController.js
@@ -31,6 +31,44 @@ class StaticController {
31 isTeamManagementIncludedInCurrentPlan: true, 31 isTeamManagementIncludedInCurrentPlan: true,
32 isTodosEnabled: true, 32 isTodosEnabled: true,
33 isTodosIncludedInCurrentPlan: true, 33 isTodosIncludedInCurrentPlan: true,
34 defaultTrialPlan: "franz-pro-yearly",
35 subscribeURL: "https://getferdi.com",
36 planSelectionURL: "https://getferdi.com",
37 isMagicBarEnabled: true,
38 hasInlineCheckout: true,
39 isPlanSelectionEnabled: false,
40 isTrialStatusBarEnabled: false,
41 canSkipTrial: true,
42 pricingConfig: {
43 currency: "$",
44 currencyID: "USD",
45 plans: {
46 personal: {
47 monthly: {
48 id: "ferdi-free",
49 price: 0,
50 billed: 0
51 },
52 yearly: {
53 id: "ferdi-completely-free",
54 price: 0,
55 billed: 0
56 }
57 },
58 pro: {
59 monthly: {
60 id: "ferdi-still-free",
61 price: 0,
62 billed: 0
63 },
64 yearly: {
65 id: "ferdi-forever-free",
66 price: 0,
67 billed: 0
68 }
69 }
70 }
71 }
34 }); 72 });
35 } 73 }
36 74