aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-06-17 16:52:46 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-06-17 16:52:46 +0200
commit2887eee3935e75640fc45111a904e78496dab62e (patch)
tree5ecd66727b8056f62771e20bb42fca9cfde1745c /src/config.js
parentMerge branch 'feature/3rd-party-limit' into feature/new-pricing (diff)
downloadferdium-app-2887eee3935e75640fc45111a904e78496dab62e.tar.gz
ferdium-app-2887eee3935e75640fc45111a904e78496dab62e.tar.zst
ferdium-app-2887eee3935e75640fc45111a904e78496dab62e.zip
Rename feature flags
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/config.js b/src/config.js
index 544f94fde..3c8b0f0d0 100644
--- a/src/config.js
+++ b/src/config.js
@@ -45,16 +45,16 @@ export const DEFAULT_APP_SETTINGS = {
45}; 45};
46 46
47export const DEFAULT_FEATURES_CONFIG = { 47export const DEFAULT_FEATURES_CONFIG = {
48 isSpellcheckerPremiumFeature: false, 48 isSpellcheckerIncludedInCurrentPlan: true,
49 needToWaitToProceed: false, 49 needToWaitToProceed: false,
50 needToWaitToProceedConfig: { 50 needToWaitToProceedConfig: {
51 delayOffset: ms('1h'), 51 delayOffset: ms('1h'),
52 wait: ms('10s'), 52 wait: ms('10s'),
53 }, 53 },
54 isServiceProxyEnabled: false, 54 isServiceProxyEnabled: false,
55 isServiceProxyPremiumFeature: true, 55 isServiceProxyIncludedInCurrentPlan: false,
56 isAnnouncementsEnabled: true, 56 isAnnouncementsEnabled: true,
57 isWorkspacePremiumFeature: true, 57 isWorkspaceIncludedInCurrentPlan: true,
58 isWorkspaceEnabled: false, 58 isWorkspaceEnabled: false,
59}; 59};
60 60