aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/config.js b/src/config.js
index d01ece849..7de6b3e46 100644
--- a/src/config.js
+++ b/src/config.js
@@ -40,8 +40,6 @@ export const DEFAULT_APP_SETTINGS = {
40 enableSystemTray: true, 40 enableSystemTray: true,
41 minimizeToSystemTray: false, 41 minimizeToSystemTray: false,
42 privateNotifications: false, 42 privateNotifications: false,
43 server: LIVE_API,
44 todoServer: PRODUCTION_TODOS_FRONTEND_URL,
45 showDisabledServices: true, 43 showDisabledServices: true,
46 showMessageBadgeWhenMuted: true, 44 showMessageBadgeWhenMuted: true,
47 enableSpellchecking: true, 45 enableSpellchecking: true,
@@ -53,10 +51,17 @@ export const DEFAULT_APP_SETTINGS = {
53 isAppMuted: false, 51 isAppMuted: false,
54 enableGPUAcceleration: true, 52 enableGPUAcceleration: true,
55 serviceLimit: 5, 53 serviceLimit: 5,
54
55 // Ferdi specific options
56 server: LIVE_API,
57 todoServer: PRODUCTION_TODOS_FRONTEND_URL,
56 autohideMenuBar: false, 58 autohideMenuBar: false,
57 lockingFeatureEnabled: false, 59 lockingFeatureEnabled: false,
58 locked: false, 60 locked: false,
59 lockedPassword: '', 61 lockedPassword: '',
62 scheduledDNDEnabled: false,
63 scheduledDNDStart: '17:00',
64 scheduledDNDEnd: '09:00',
60}; 65};
61 66
62export const DEFAULT_FEATURES_CONFIG = { 67export const DEFAULT_FEATURES_CONFIG = {
@@ -71,6 +76,7 @@ export const DEFAULT_FEATURES_CONFIG = {
71 isAnnouncementsEnabled: true, 76 isAnnouncementsEnabled: true,
72 isWorkspaceIncludedInCurrentPlan: true, 77 isWorkspaceIncludedInCurrentPlan: true,
73 isWorkspaceEnabled: false, 78 isWorkspaceEnabled: false,
79 isCommunityRecipesIncludedInCurrentPlan: true,
74}; 80};
75 81
76export const DEFAULT_WINDOW_OPTIONS = { 82export const DEFAULT_WINDOW_OPTIONS = {