aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server/app/Controllers/Http/ServiceController.js
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-06-19 13:54:06 +0530
committerLibravatar GitHub <noreply@github.com>2022-06-19 08:24:06 +0000
commit8599af64bc5893ea8e74367dfc9b6d9d6f54c428 (patch)
treefd0dbe82c4fce58b15b002ba03fcd16e05ed7925 /src/internal-server/app/Controllers/Http/ServiceController.js
parentAdd manual trigger for GH workflow to publsih homebrew tap [skip ci] (diff)
downloadferdium-app-8599af64bc5893ea8e74367dfc9b6d9d6f54c428.tar.gz
ferdium-app-8599af64bc5893ea8e74367dfc9b6d9d6f54c428.tar.zst
ferdium-app-8599af64bc5893ea8e74367dfc9b6d9d6f54c428.zip
Add ability to enable the progressbar for each service (#301)
Diffstat (limited to 'src/internal-server/app/Controllers/Http/ServiceController.js')
-rw-r--r--src/internal-server/app/Controllers/Http/ServiceController.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/internal-server/app/Controllers/Http/ServiceController.js b/src/internal-server/app/Controllers/Http/ServiceController.js
index 4b26f4747..89091aa57 100644
--- a/src/internal-server/app/Controllers/Http/ServiceController.js
+++ b/src/internal-server/app/Controllers/Http/ServiceController.js
@@ -51,6 +51,7 @@ class ServiceController {
51 trapLinkClicks: DEFAULT_SERVICE_SETTINGS.trapLinkClicks, 51 trapLinkClicks: DEFAULT_SERVICE_SETTINGS.trapLinkClicks,
52 isMuted: DEFAULT_SERVICE_SETTINGS.isMuted, 52 isMuted: DEFAULT_SERVICE_SETTINGS.isMuted,
53 isDarkModeEnabled: '', // TODO: This should ideally be a boolean (false). But, changing it caused the sidebar toggle to not work. 53 isDarkModeEnabled: '', // TODO: This should ideally be a boolean (false). But, changing it caused the sidebar toggle to not work.
54 isProgressbarEnabled: DEFAULT_SERVICE_SETTINGS.isProgressbarEnabled,
54 spellcheckerLanguage: '', 55 spellcheckerLanguage: '',
55 order: DEFAULT_SERVICE_ORDER, 56 order: DEFAULT_SERVICE_ORDER,
56 customRecipe: false, 57 customRecipe: false,
@@ -79,6 +80,7 @@ class ServiceController {
79 isBadgeEnabled: DEFAULT_SERVICE_SETTINGS.isBadgeEnabled, 80 isBadgeEnabled: DEFAULT_SERVICE_SETTINGS.isBadgeEnabled,
80 trapLinkClicks: DEFAULT_SERVICE_SETTINGS.trapLinkClicks, 81 trapLinkClicks: DEFAULT_SERVICE_SETTINGS.trapLinkClicks,
81 isDarkModeEnabled: '', // TODO: This should ideally be a boolean (false). But, changing it caused the sidebar toggle to not work. 82 isDarkModeEnabled: '', // TODO: This should ideally be a boolean (false). But, changing it caused the sidebar toggle to not work.
83 isProgressbarEnabled: DEFAULT_SERVICE_SETTINGS.isProgressbarEnabled,
82 isEnabled: DEFAULT_SERVICE_SETTINGS.isEnabled, 84 isEnabled: DEFAULT_SERVICE_SETTINGS.isEnabled,
83 isMuted: DEFAULT_SERVICE_SETTINGS.isMuted, 85 isMuted: DEFAULT_SERVICE_SETTINGS.isMuted,
84 isNotificationEnabled: DEFAULT_SERVICE_SETTINGS.isNotificationEnabled, 86 isNotificationEnabled: DEFAULT_SERVICE_SETTINGS.isNotificationEnabled,
@@ -223,6 +225,7 @@ class ServiceController {
223 isBadgeEnabled: DEFAULT_SERVICE_SETTINGS.isBadgeEnabled, 225 isBadgeEnabled: DEFAULT_SERVICE_SETTINGS.isBadgeEnabled,
224 trapLinkClicks: DEFAULT_SERVICE_SETTINGS.trapLinkClicks, 226 trapLinkClicks: DEFAULT_SERVICE_SETTINGS.trapLinkClicks,
225 isDarkModeEnabled: '', // TODO: This should ideally be a boolean (false). But, changing it caused the sidebar toggle to not work. 227 isDarkModeEnabled: '', // TODO: This should ideally be a boolean (false). But, changing it caused the sidebar toggle to not work.
228 isProgressbarEnabled: DEFAULT_SERVICE_SETTINGS.isProgressbarEnabled,
226 isEnabled: DEFAULT_SERVICE_SETTINGS.isEnabled, 229 isEnabled: DEFAULT_SERVICE_SETTINGS.isEnabled,
227 isMuted: DEFAULT_SERVICE_SETTINGS.isMuted, 230 isMuted: DEFAULT_SERVICE_SETTINGS.isMuted,
228 isNotificationEnabled: DEFAULT_SERVICE_SETTINGS.isNotificationEnabled, 231 isNotificationEnabled: DEFAULT_SERVICE_SETTINGS.isNotificationEnabled,