Files
talk/client/coral-framework/actions/asset.js
T
2017-01-24 13:23:42 -05:00

6 lines
302 B
JavaScript

import * as actions from '../constants/asset';
export const fetchAssetRequest = () => ({type: actions.FETCH_ASSET_REQUEST});
export const fetchAssetSuccess = asset => ({type: actions.FETCH_ASSET_SUCCESS, asset});
export const fetchAssetFailure = error => ({type: actions.FETCH_ASSET_FAILURE, error});