aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-09-21 11:37:30 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2019-09-21 11:37:30 +0200
commit4e1fc89de9ce3bf00f7387f39062d1b4878ecd16 (patch)
tree9d86224f7be338cbd43dfedb9b9831ee2a851ff7 /src/config.js
parentUse official node-auto-launch (diff)
downloadferdium-app-4e1fc89de9ce3bf00f7387f39062d1b4878ecd16.tar.gz
ferdium-app-4e1fc89de9ce3bf00f7387f39062d1b4878ecd16.tar.zst
ferdium-app-4e1fc89de9ce3bf00f7387f39062d1b4878ecd16.zip
Add scheduled Do-not-Disturb feature
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/config.js b/src/config.js
index d01ece849..96c054cca 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 = {