aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/config.js b/src/config.js
index 78a92d948..d01ece849 100644
--- a/src/config.js
+++ b/src/config.js
@@ -31,11 +31,17 @@ export const DEVELOPMENT_TODOS_FRONTEND_URL = 'https://development--franz-todos.
31 31
32export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12'; 32export const GA_ID = !isDevMode ? 'UA-74126766-10' : 'UA-74126766-12';
33 33
34export const DEFAULT_LOCK_PASSWORD = 'ferdi';
35export const KEEP_WS_LOADED_USID = '0a0aa000-0a0a-49a0-a000-a0a0a0a0a0a0';
36
34export const DEFAULT_APP_SETTINGS = { 37export const DEFAULT_APP_SETTINGS = {
35 autoLaunchInBackground: false, 38 autoLaunchInBackground: false,
36 runInBackground: true, 39 runInBackground: true,
37 enableSystemTray: true, 40 enableSystemTray: true,
38 minimizeToSystemTray: false, 41 minimizeToSystemTray: false,
42 privateNotifications: false,
43 server: LIVE_API,
44 todoServer: PRODUCTION_TODOS_FRONTEND_URL,
39 showDisabledServices: true, 45 showDisabledServices: true,
40 showMessageBadgeWhenMuted: true, 46 showMessageBadgeWhenMuted: true,
41 enableSpellchecking: true, 47 enableSpellchecking: true,
@@ -47,6 +53,10 @@ export const DEFAULT_APP_SETTINGS = {
47 isAppMuted: false, 53 isAppMuted: false,
48 enableGPUAcceleration: true, 54 enableGPUAcceleration: true,
49 serviceLimit: 5, 55 serviceLimit: 5,
56 autohideMenuBar: false,
57 lockingFeatureEnabled: false,
58 locked: false,
59 lockedPassword: '',
50}; 60};
51 61
52export const DEFAULT_FEATURES_CONFIG = { 62export const DEFAULT_FEATURES_CONFIG = {
@@ -57,7 +67,7 @@ export const DEFAULT_FEATURES_CONFIG = {
57 wait: ms('10s'), 67 wait: ms('10s'),
58 }, 68 },
59 isServiceProxyEnabled: false, 69 isServiceProxyEnabled: false,
60 isServiceProxyIncludedInCurrentPlan: false, 70 isServiceProxyIncludedInCurrentPlan: true,
61 isAnnouncementsEnabled: true, 71 isAnnouncementsEnabled: true,
62 isWorkspaceIncludedInCurrentPlan: true, 72 isWorkspaceIncludedInCurrentPlan: true,
63 isWorkspaceEnabled: false, 73 isWorkspaceEnabled: false,