aboutsummaryrefslogtreecommitdiffstats
path: root/src/actions
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-03-12 14:04:13 +0100
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-03-12 14:04:13 +0100
commit9af01849f895230ae60a635c9756a5e206aa0fa1 (patch)
treeb0b99f324c1a2e8c52e1fadf1152efac6d1028d2 /src/actions
parentBump version to 5.0.1-beta.1 (diff)
parentMerge branch 'sergiughf-hotfix/update-electron' into develop (diff)
downloadferdium-app-9af01849f895230ae60a635c9756a5e206aa0fa1.tar.gz
ferdium-app-9af01849f895230ae60a635c9756a5e206aa0fa1.tar.zst
ferdium-app-9af01849f895230ae60a635c9756a5e206aa0fa1.zip
Merge branch 'develop' into release/5.0.1-beta.1
Diffstat (limited to 'src/actions')
-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 },