mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-12 18:43:50 +00:00
Moved management of filtering options to own reducer
This commit is contained in:
@@ -3,9 +3,11 @@ import { combineReducers } from 'redux';
|
||||
import serversReducer from '../servers/reducers/server';
|
||||
import selectedServerReducer from '../servers/reducers/selectedServer';
|
||||
import shortUrlsListReducer from '../short-urls/reducers/shortUrlsList';
|
||||
import shortUrlsListParamsReducer from '../short-urls/reducers/shortUrlsListParams';
|
||||
|
||||
export default combineReducers({
|
||||
servers: serversReducer,
|
||||
selectedServer: selectedServerReducer,
|
||||
shortUrlsList: shortUrlsListReducer,
|
||||
shortUrlsListParams: shortUrlsListParamsReducer,
|
||||
});
|
||||
|
||||
@@ -6,3 +6,4 @@ export const CREATE_SERVER = 'shlink/CREATE_SERVER';
|
||||
|
||||
// Short URLs
|
||||
export const LIST_SHORT_URLS = 'shlink/LIST_SHORT_URLS';
|
||||
export const UPDATE_SHORT_URLS_LIST = 'shlink/UPDATE_SHORT_URLS_LIST';
|
||||
|
||||
Reference in New Issue
Block a user