diff --git a/client/coral-framework/constants/asset.js b/client/coral-framework/constants/asset.js new file mode 100644 index 000000000..31cedb5e9 --- /dev/null +++ b/client/coral-framework/constants/asset.js @@ -0,0 +1,3 @@ +export const FETCH_ASSET_REQUEST = 'FETCH_ASSET_REQUEST'; +export const FETCH_ASSET_FAILURE = 'FETCH_ASSET_FAILURE'; +export const FETCH_ASSET_SUCCESS = 'FETCH_ASSET_SUCCESS'; diff --git a/client/coral-framework/reducers/index.js b/client/coral-framework/reducers/index.js index 2c862ebbd..c75b7020d 100644 --- a/client/coral-framework/reducers/index.js +++ b/client/coral-framework/reducers/index.js @@ -5,9 +5,9 @@ import auth from './auth'; import user from './user'; export default { - config, - items, - notification, auth, - user + user, + items, + config, + notification };