This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
Sphere/app/middleware/actionChain.js

9 lines
254 B
JavaScript

export default store => next => action => {
if (action.meta &&
action.meta.callback &&
action.type.endsWith('SUCCESS') &&
typeof action.meta.callback === 'function') {
action.meta.callback(action.payload);
}
return next(action);
};