summaryrefslogtreecommitdiff
path: root/frontend/src/containers/UserRepo/actions.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/containers/UserRepo/actions.js')
-rw-r--r--frontend/src/containers/UserRepo/actions.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/frontend/src/containers/UserRepo/actions.js b/frontend/src/containers/UserRepo/actions.js
new file mode 100644
index 00000000..dc06035b
--- /dev/null
+++ b/frontend/src/containers/UserRepo/actions.js
@@ -0,0 +1,8 @@
+export const SET_USERNAME = 'homePage/SET_USERNAME'
+
+export const setUsername = (userName, displayName, index) => ({
+ type: SET_USERNAME,
+ userName,
+ index,
+ displayName
+})
bgstack15