You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/frontend/src/Store/Actions/index.js

32 lines
818 B

import * as app from './appActions';
import * as captcha from './captchaActions';
import * as commands from './commandActions';
import * as customFilters from './customFilterActions';
import * as history from './historyActions';
import * as movies from './movieActions';
import * as movieIndex from './movieIndexActions';
import * as oAuth from './oAuthActions';
import * as paths from './pathActions';
import * as providerOptions from './providerOptionActions';
import * as releases from './releaseActions';
import * as settings from './settingsActions';
import * as system from './systemActions';
import * as tags from './tagActions';
export default [
app,
captcha,
commands,
customFilters,
history,
oAuth,
paths,
providerOptions,
releases,
movies,
movieIndex,
settings,
system,
tags
];