1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2025-06-13 05:29:24 -04:00

Initial plumbing for moving to Redux

This commit is contained in:
2016-10-03 19:49:15 -04:00
parent 449b4ee760
commit 4f2f15783a
9 changed files with 304 additions and 2 deletions

View File

@ -0,0 +1,13 @@
var keyMirror = require('keymirror');
module.exports = keyMirror({
FETCH_ACCOUNTS: null,
ACCOUNTS_FETCHED: null,
CREATE_ACCOUNT: null,
ACCOUNT_CREATED: null,
UPDATE_ACCOUNT: null,
ACCOUNT_UPDATED: null,
REMOVE_ACCOUNT: null,
ACCOUNT_REMOVED: null,
ACCOUNT_SELECTED: null
});

View File

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