summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/client/socket/index.js2
-rw-r--r--app/client/system/system.actions.js4
2 files changed, 4 insertions, 2 deletions
diff --git a/app/client/socket/index.js b/app/client/socket/index.js
index 87540f4..a5d9987 100644
--- a/app/client/socket/index.js
+++ b/app/client/socket/index.js
@@ -2,12 +2,14 @@ import { store } from '../store'
import types from '../types'
import { socket } from './socket.connection'
+import * as actions from './socket.actions'
import * as system from './socket.system'
import * as live from './socket.live'
import * as task from './socket.task'
export default {
socket,
+ actions,
system,
live,
task,
diff --git a/app/client/system/system.actions.js b/app/client/system/system.actions.js
index 2e5f783..9e4f178 100644
--- a/app/client/system/system.actions.js
+++ b/app/client/system/system.actions.js
@@ -3,7 +3,7 @@ import types from '../types'
export const run = (cmd) => (dispatch) => {
dispatch({ type: types.system.running_command, cmd })
- socket.system.run_system_command(cmd)
+ socket.actions.run_system_command(cmd)
.then(data => {
dispatch({
type: types.system.command_output,
@@ -14,7 +14,7 @@ export const run = (cmd) => (dispatch) => {
export const listDirectory = (opt) => (dispatch) => {
dispatch({ type: types.system.listing_directory, opt })
- socket.system.list_directory(opt)
+ socket.actions.list_directory(opt)
.then(data => {
dispatch({
type: types.system.list_directory,