mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-30 03:38:26 -07:00
Fix Interactive Import, Add Track Actions and Reducers
This commit is contained in:
parent
8f45fe0afe
commit
90d9741056
13 changed files with 193 additions and 27 deletions
11
frontend/src/Store/Actions/trackActionHandlers.js
Normal file
11
frontend/src/Store/Actions/trackActionHandlers.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
import createFetchHandler from './Creators/createFetchHandler';
|
||||
import * as types from './actionTypes';
|
||||
|
||||
const section = 'tracks';
|
||||
|
||||
const trackActionHandlers = {
|
||||
[types.FETCH_TRACKS]: createFetchHandler(section, '/track')
|
||||
|
||||
};
|
||||
|
||||
export default trackActionHandlers;
|
Loading…
Add table
Add a link
Reference in a new issue