aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-10-29 21:17:22 +0100
committerLibravatar vantezzen <hello@vantezzen.io>2019-10-29 21:17:22 +0100
commit016db1141ce69567b8e9a7f3894ebfb678d669cf (patch)
tree307769d124e9a874a24d679356c4ff70667a8599 /app
parentRevert "Fix empty announcements" (diff)
downloadferdium-server-016db1141ce69567b8e9a7f3894ebfb678d669cf.tar.gz
ferdium-server-016db1141ce69567b8e9a7f3894ebfb678d669cf.tar.zst
ferdium-server-016db1141ce69567b8e9a7f3894ebfb678d669cf.zip
Update feature list for Ferdi 5.4.0
Diffstat (limited to 'app')
-rw-r--r--app/Controllers/Http/StaticController.js12
1 files changed, 10 insertions, 2 deletions
diff --git a/app/Controllers/Http/StaticController.js b/app/Controllers/Http/StaticController.js
index 7041e83..2e424e1 100644
--- a/app/Controllers/Http/StaticController.js
+++ b/app/Controllers/Http/StaticController.js
@@ -13,16 +13,24 @@ class StaticController {
13 }) { 13 }) {
14 return response.send({ 14 return response.send({
15 needToWaitToProceed: false, 15 needToWaitToProceed: false,
16 isSpellcheckerPremiumFeature: true, 16 isSpellcheckerPremiumFeature: false,
17 isSpellcheckerIncludedInCurrentPlan: true,
17 isServiceProxyEnabled: true, 18 isServiceProxyEnabled: true,
19 isServiceProxyIncludedInCurrentPlan: true,
18 isServiceProxyPremiumFeature: true, 20 isServiceProxyPremiumFeature: true,
19 isWorkspacePremiumFeature: true, 21 isWorkspacePremiumFeature: false,
20 isWorkspaceEnabled: true, 22 isWorkspaceEnabled: true,
21 isAnnouncementsEnabled: true, 23 isAnnouncementsEnabled: true,
22 isSettingsWSEnabled: false, 24 isSettingsWSEnabled: false,
23 isServiceLimitEnabled: false, 25 isServiceLimitEnabled: false,
24 serviceLimitCount: 0, 26 serviceLimitCount: 0,
25 isCommunityRecipesPremiumFeature: false, 27 isCommunityRecipesPremiumFeature: false,
28 isCommunityRecipesIncludedInCurrentPlan: true,
29 isCustomUrlIncludedInCurrentPlan: true,
30 isMagicBarEnabled: true,
31 isTeamManagementIncludedInCurrentPlan: true,
32 isTodosEnabled: true,
33 isTodosIncludedInCurrentPlan: true,
26 }); 34 });
27 } 35 }
28 36