client/src/actions/networkActions.js
changeset 87 dbcee57de2c6
child 129 d48946d164c6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/client/src/actions/networkActions.js	Mon Jun 26 15:21:06 2017 +0200
@@ -0,0 +1,15 @@
+import * as types from '../constants/actionTypes';
+
+export const dataFetchSuccess = (res) => {
+  return {
+    type: types.DATA_FETCH_SUCCESS,
+    res
+  };
+}
+
+export const offlineConfigInitialized = (additionalContext) => {
+  return {
+    type: types.OFFLINE_CONFIG_INITIALIZED,
+    additionalContext
+  }
+}