mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 01:23:53 -07:00
New: Don't require artist mapping
This commit is contained in:
parent
1cc434a498
commit
be4e748977
159 changed files with 2934 additions and 4208 deletions
|
@ -20,6 +20,7 @@ import qualityDefinitions from './Settings/qualityDefinitions';
|
|||
import qualityProfiles from './Settings/qualityProfiles';
|
||||
import releaseProfiles from './Settings/releaseProfiles';
|
||||
import remotePathMappings from './Settings/remotePathMappings';
|
||||
import rootFolders from './Settings/rootFolders';
|
||||
import ui from './Settings/ui';
|
||||
|
||||
export * from './Settings/delayProfiles';
|
||||
|
@ -41,6 +42,7 @@ export * from './Settings/qualityDefinitions';
|
|||
export * from './Settings/qualityProfiles';
|
||||
export * from './Settings/releaseProfiles';
|
||||
export * from './Settings/remotePathMappings';
|
||||
export * from './Settings/rootFolders';
|
||||
export * from './Settings/ui';
|
||||
|
||||
//
|
||||
|
@ -73,6 +75,7 @@ export const defaultState = {
|
|||
qualityProfiles: qualityProfiles.defaultState,
|
||||
releaseProfiles: releaseProfiles.defaultState,
|
||||
remotePathMappings: remotePathMappings.defaultState,
|
||||
rootFolders: rootFolders.defaultState,
|
||||
ui: ui.defaultState
|
||||
};
|
||||
|
||||
|
@ -113,6 +116,7 @@ export const actionHandlers = handleThunks({
|
|||
...qualityProfiles.actionHandlers,
|
||||
...releaseProfiles.actionHandlers,
|
||||
...remotePathMappings.actionHandlers,
|
||||
...rootFolders.actionHandlers,
|
||||
...ui.actionHandlers
|
||||
});
|
||||
|
||||
|
@ -144,6 +148,7 @@ export const reducers = createHandleActions({
|
|||
...qualityProfiles.reducers,
|
||||
...releaseProfiles.reducers,
|
||||
...remotePathMappings.reducers,
|
||||
...rootFolders.reducers,
|
||||
...ui.reducers
|
||||
|
||||
}, defaultState, section);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue