aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2018-12-01 14:34:39 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2018-12-01 14:34:39 +0100
commit035dc1bbb1951bfe99740009f8b999c65861d133 (patch)
tree4e987938d7a25c08ea64f2692d5ae9f0b8bd80fe /src/config.js
parentShow service dark mode option only for dark mode services (diff)
downloadferdium-app-035dc1bbb1951bfe99740009f8b999c65861d133.tar.gz
ferdium-app-035dc1bbb1951bfe99740009f8b999c65861d133.tar.zst
ferdium-app-035dc1bbb1951bfe99740009f8b999c65861d133.zip
Move default feature config to config.js
Diffstat (limited to 'src/config.js')
-rw-r--r--src/config.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/config.js b/src/config.js
index 20cf8a048..08dbb85f3 100644
--- a/src/config.js
+++ b/src/config.js
@@ -27,6 +27,17 @@ export const DEFAULT_APP_SETTINGS = {
27 serviceLimit: 5, 27 serviceLimit: 5,
28}; 28};
29 29
30export const DEFAULT_FEATURES_CONFIG = {
31 isSpellcheckerPremiumFeature: false,
32 needToWaitToProceed: false,
33 needToWaitToProceedConfig: {
34 delayOffset: 3600000,
35 wait: 10000,
36 },
37 isServiceProxyEnabled: false,
38 isServiceProxyPremiumFeature: true,
39};
40
30export const FRANZ_SERVICE_REQUEST = 'hhttp://bit.ly/franz-plugin-docs'; 41export const FRANZ_SERVICE_REQUEST = 'hhttp://bit.ly/franz-plugin-docs';
31export const FRANZ_TRANSLATION = 'https://bit.ly/franz-translate'; 42export const FRANZ_TRANSLATION = 'https://bit.ly/franz-translate';
32 43