aboutsummaryrefslogtreecommitdiffstats
path: root/app/Controllers/Http/StaticController.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controllers/Http/StaticController.js')
-rw-r--r--app/Controllers/Http/StaticController.js36
1 files changed, 18 insertions, 18 deletions
diff --git a/app/Controllers/Http/StaticController.js b/app/Controllers/Http/StaticController.js
index 265578f..cd38b13 100644
--- a/app/Controllers/Http/StaticController.js
+++ b/app/Controllers/Http/StaticController.js
@@ -31,44 +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", 34 defaultTrialPlan: 'franz-pro-yearly',
35 subscribeURL: "https://getferdi.com", 35 subscribeURL: 'https://getferdi.com',
36 planSelectionURL: "https://getferdi.com", 36 planSelectionURL: 'https://getferdi.com',
37 isMagicBarEnabled: true, 37 isMagicBarEnabled: true,
38 hasInlineCheckout: true, 38 hasInlineCheckout: true,
39 isPlanSelectionEnabled: false, 39 isPlanSelectionEnabled: false,
40 isTrialStatusBarEnabled: false, 40 isTrialStatusBarEnabled: false,
41 canSkipTrial: true, 41 canSkipTrial: true,
42 pricingConfig: { 42 pricingConfig: {
43 currency: "$", 43 currency: '$',
44 currencyID: "USD", 44 currencyID: 'USD',
45 plans: { 45 plans: {
46 personal: { 46 personal: {
47 monthly: { 47 monthly: {
48 id: "ferdi-free", 48 id: 'ferdi-free',
49 price: 0, 49 price: 0,
50 billed: 0 50 billed: 0,
51 }, 51 },
52 yearly: { 52 yearly: {
53 id: "ferdi-completely-free", 53 id: 'ferdi-completely-free',
54 price: 0, 54 price: 0,
55 billed: 0 55 billed: 0,
56 } 56 },
57 }, 57 },
58 pro: { 58 pro: {
59 monthly: { 59 monthly: {
60 id: "ferdi-still-free", 60 id: 'ferdi-still-free',
61 price: 0, 61 price: 0,
62 billed: 0 62 billed: 0,
63 }, 63 },
64 yearly: { 64 yearly: {
65 id: "ferdi-forever-free", 65 id: 'ferdi-forever-free',
66 price: 0, 66 price: 0,
67 billed: 0 67 billed: 0,
68 } 68 },
69 } 69 },
70 } 70 },
71 } 71 },
72 }); 72 });
73 } 73 }
74 74