Readarr/frontend/src/Store/Actions/organizePreviewActionHandlers.js
2017-09-05 23:00:26 -04:00

8 lines
278 B
JavaScript

import createFetchHandler from './Creators/createFetchHandler';
import * as types from './actionTypes';
const organizePreviewActionHandlers = {
[types.FETCH_ORGANIZE_PREVIEW]: createFetchHandler('organizePreview', '/rename')
};
export default organizePreviewActionHandlers;