11 lines
262 B
JavaScript
Raw Normal View History

2017-01-10 22:23:22 -02:00
export const ADD_ASSET = 'ADD_ASSET';
export const REMOVE_ASSET = 'REMOVE_ASSET';
2016-06-10 00:16:01 -03:00
2017-01-10 22:23:22 -02:00
export function addAsset(assetProxy) {
return { type: ADD_ASSET, payload: assetProxy };
2016-06-10 14:01:14 -03:00
}
2017-01-10 22:23:22 -02:00
export function removeAsset(path) {
return { type: REMOVE_ASSET, payload: path };
2016-06-10 00:16:01 -03:00
}