Lidarr/frontend/src/Store/Actions/rootFolderActions.js

7 lines
354 B
JavaScript
Raw Normal View History

2017-09-04 02:20:56 +00:00
import * as types from './actionTypes';
import rootFolderActionHandlers from './rootFolderActionHandlers';
export const fetchRootFolders = rootFolderActionHandlers[types.FETCH_ROOT_FOLDERS];
export const addRootFolder = rootFolderActionHandlers[types.ADD_ROOT_FOLDER];
export const deleteRootFolder = rootFolderActionHandlers[types.DELETE_ROOT_FOLDER];