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

Add lots of backend and back-frontend report infrastructure

This commit is contained in:
2017-06-16 20:55:22 -04:00
parent eb5c9cdcd8
commit 9ce6454997
13 changed files with 652 additions and 232 deletions

View File

@ -1,8 +1,17 @@
var keyMirror = require('keymirror');
module.exports = keyMirror({
FETCH_REPORT: null,
REPORT_FETCHED: null,
SELECT_REPORT: null,
REPORT_SELECTED: null
FETCH_REPORTS: null,
REPORTS_FETCHED: null,
CREATE_REPORT: null,
REPORT_CREATED: null,
UPDATE_REPORT: null,
REPORT_UPDATED: null,
REMOVE_REPORT: null,
REPORT_REMOVED: null,
TABULATE_REPORT: null,
REPORT_TABULATED: null,
REPORT_SELECTED: null,
SELECTION_CLEARED: null,
SERIES_SELECTED: null
});