Initial commit

This commit is contained in:
2016-12-22 21:22:47 -05:00
commit df4970c4c3
19 changed files with 1116 additions and 0 deletions

View File

@ -0,0 +1,9 @@
var keyMirror = require('keymirror');
module.exports = keyMirror({
ERROR_AJAX: null,
ERROR_SERVER: null,
ERROR_CLIENT: null,
ERROR_USER: null,
CLEAR_ERROR: null
});

View File

@ -0,0 +1,12 @@
var keyMirror = require('keymirror');
module.exports = keyMirror({
LOGIN_USER: null,
USER_LOGGEDIN: null,
LOGOUT_USER: null,
USER_LOGGEDOUT: null,
FETCH_USER: null,
USER_FETCHED: null,
UPDATE_USER: null,
USER_UPDATED: null
});