mirror of
https://github.com/aclindsa/moneygo.git
synced 2025-06-13 13:39:23 -04:00
Reduxify CRUD actions for transactions
This commit is contained in:
15
js/constants/TransactionConstants.js
Normal file
15
js/constants/TransactionConstants.js
Normal file
@ -0,0 +1,15 @@
|
||||
var keyMirror = require('keymirror');
|
||||
|
||||
module.exports = keyMirror({
|
||||
FETCH_TRANSACTION_PAGE: null,
|
||||
TRANSACTION_PAGE_FETCHED: null,
|
||||
CREATE_TRANSACTION: null,
|
||||
TRANSACTION_CREATED: null,
|
||||
UPDATE_TRANSACTION: null,
|
||||
TRANSACTION_UPDATED: null,
|
||||
REMOVE_TRANSACTION: null,
|
||||
SELECT_TRANSACTION: null,
|
||||
TRANSACTION_REMOVED: null,
|
||||
TRANSACTION_SELECTED: null,
|
||||
SELECTION_CLEARED: null
|
||||
});
|
@ -1,6 +0,0 @@
|
||||
var keyMirror = require('keymirror');
|
||||
|
||||
module.exports = keyMirror({
|
||||
FETCH_TRANSACTION_PAGE: null,
|
||||
TRANSACTION_PAGE_FETCHED: null
|
||||
});
|
Reference in New Issue
Block a user