aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2017-11-10 12:08:35 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2017-11-10 12:08:35 +0100
commitf5a9aa21e2ab958f60c143668f4836bc47e2b539 (patch)
tree7d7cb70dee56e6ca4a927f7789601cc428381659 /src/actions
parentfeat(Service): Add option to mute service (diff)
downloadferdium-app-f5a9aa21e2ab958f60c143668f4836bc47e2b539.tar.gz
ferdium-app-f5a9aa21e2ab958f60c143668f4836bc47e2b539.tar.zst
ferdium-app-f5a9aa21e2ab958f60c143668f4836bc47e2b539.zip
feat(App): Add option to mute all services in sidebar
Closes #8 #162
Diffstat (limited to 'src/actions')
-rw-r--r--src/actions/app.js4
-rw-r--r--src/actions/service.js3
2 files changed, 7 insertions, 0 deletions
diff --git a/src/actions/app.js b/src/actions/app.js
index 5db4b739e..25ff9344d 100644
--- a/src/actions/app.js
+++ b/src/actions/app.js
@@ -20,4 +20,8 @@ export default {
20 resetUpdateStatus: {}, 20 resetUpdateStatus: {},
21 installUpdate: {}, 21 installUpdate: {},
22 healthCheck: {}, 22 healthCheck: {},
23 muteApp: {
24 isMuted: PropTypes.bool.isRequired,
25 },
26 toggleMuteApp: {},
23}; 27};
diff --git a/src/actions/service.js b/src/actions/service.js
index ea6ea5acc..1b918251b 100644
--- a/src/actions/service.js
+++ b/src/actions/service.js
@@ -71,6 +71,9 @@ export default {
71 toggleNotifications: { 71 toggleNotifications: {
72 serviceId: PropTypes.string.isRequired, 72 serviceId: PropTypes.string.isRequired,
73 }, 73 },
74 toggleAudio: {
75 serviceId: PropTypes.string.isRequired,
76 },
74 openDevTools: { 77 openDevTools: {
75 serviceId: PropTypes.string.isRequired, 78 serviceId: PropTypes.string.isRequired,
76 }, 79 },