aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2021-10-16 21:43:20 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2021-10-16 21:43:20 +0530
commit19ef0c756eba1b6c554ce9892f503534e2bf0597 (patch)
tree3eeb4b631805a39f00ab58a0995c0003df467007 /src/config.ts
parentregenerate i18n file (diff)
downloadferdium-app-19ef0c756eba1b6c554ce9892f503534e2bf0597.tar.gz
ferdium-app-19ef0c756eba1b6c554ce9892f503534e2bf0597.tar.zst
ferdium-app-19ef0c756eba1b6c554ce9892f503534e2bf0597.zip
refactor: move service-defaults into the 'config' file for reuse
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};