aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.ts')
-rw-r--r--src/config.ts23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/config.ts b/src/config.ts
index 5f95a59f4..dfedbe6f5 100644
--- a/src/config.ts
+++ b/src/config.ts
@@ -235,4 +235,27 @@ export const DEFAULT_APP_SETTINGS = {
235 alwaysShowWorkspaces: false, 235 alwaysShowWorkspaces: false,
236 liftSingleInstanceLock: false, 236 liftSingleInstanceLock: false,
237 enableLongPressServiceHint: false, 237 enableLongPressServiceHint: false,
238 proxyFeatureEnabled: false,
239 onlyShowFavoritesInUnreadCount: false
240};
241
242export const DEFAULT_SERVICE_SETTINGS = {
243 isEnabled: true,
244 isHibernationEnabled: false,
245 isWakeUpEnabled: true,
246 isNotificationEnabled: true,
247 isBadgeEnabled: true,
248 isMuted: false,
249 customIcon: false,
250 isDarkModeEnabled: false,
251 // Note: Do NOT change these default values. If they change, then the corresponding changes in the recipes needs to be done
252 hasDirectMessages: true,
253 hasIndirectMessages: false,
254 hasNotificationSound: false,
255 hasTeamId: false,
256 hasCustomUrl: false,
257 hasHostedOption: false,
258 allowFavoritesDelineationInUnreadCount: false,
259 disablewebsecurity: false,
260 autoHibernate: false,
238}; 261};