aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions/service.js
diff options
context:
space:
mode:
authorLibravatar Stefan <stefan@adlk.io>2019-03-08 17:36:13 +0100
committerLibravatar Stefan <stefan@adlk.io>2019-03-08 17:36:13 +0100
commitd6c7293d602f29f3d7005aeb358861a8c2399180 (patch)
tree43b72dcef9493cac97df99d5ac2f1fc9a1b6e9c9 /src/actions/service.js
parentAdd notification debug events (diff)
parentFix/service webview unmounting (#1328) (diff)
downloadferdium-app-d6c7293d602f29f3d7005aeb358861a8c2399180.tar.gz
ferdium-app-d6c7293d602f29f3d7005aeb358861a8c2399180.tar.zst
ferdium-app-d6c7293d602f29f3d7005aeb358861a8c2399180.zip
Merge branch 'develop' of https://github.com/meetfranz/franz into develop
Diffstat (limited to 'src/actions/service.js')
-rw-r--r--src/actions/service.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/actions/service.js b/src/actions/service.js
index 5d483b12a..ceaabc31e 100644
--- a/src/actions/service.js
+++ b/src/actions/service.js
@@ -1,4 +1,5 @@
1import PropTypes from 'prop-types'; 1import PropTypes from 'prop-types';
2import ServiceModel from '../models/Service';
2 3
3export default { 4export default {
4 setActive: { 5 setActive: {
@@ -36,6 +37,9 @@ export default {
36 serviceId: PropTypes.string.isRequired, 37 serviceId: PropTypes.string.isRequired,
37 webview: PropTypes.object.isRequired, 38 webview: PropTypes.object.isRequired,
38 }, 39 },
40 detachService: {
41 service: PropTypes.instanceOf(ServiceModel).isRequired,
42 },
39 focusService: { 43 focusService: {
40 serviceId: PropTypes.string.isRequired, 44 serviceId: PropTypes.string.isRequired,
41 }, 45 },