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/actions/makeAsyncActionSet.js

8 lines
188 B
JavaScript
Raw Permalink Normal View History

2016-04-28 17:34:20 +01:00
export default function makeAsyncActionSet(actionName) {
return {
REQUEST: actionName + '_REQUEST',
SUCCESS: actionName + '_SUCCESS',
FAILURE: actionName + '_FAILURE'
};
}