client/src/actions/userActions.js
changeset 53 d8588379529e
child 72 7634b424f426
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/client/src/actions/userActions.js	Mon Jun 19 17:56:41 2017 +0200
@@ -0,0 +1,10 @@
+import * as types from '../constants/actionTypes';
+
+export const updateSettings = (username, firstname, lastname) => {
+  return {
+    type: types.USER_UPDATE_SETTINGS_ASYNC,
+    username,
+    firstname,
+    lastname
+  };
+}