2018-06-03 21:12:40 +03:00
|
|
|
import { combineReducers } from 'redux';
|
|
|
|
|
2018-06-14 21:11:41 +03:00
|
|
|
import serversReducer from '../servers/reducers/server';
|
|
|
|
import selectedServerReducer from '../servers/reducers/selectedServer';
|
2018-06-15 22:49:25 +03:00
|
|
|
import shortUrlsListReducer from '../short-urls/reducers/shortUrlsList';
|
2018-06-17 18:12:16 +03:00
|
|
|
import shortUrlsListParamsReducer from '../short-urls/reducers/shortUrlsListParams';
|
2018-07-28 11:41:05 +03:00
|
|
|
import shortUrlCreationResultReducer from '../short-urls/reducers/shortUrlCreationResult';
|
2018-07-30 21:31:48 +03:00
|
|
|
import shortUrlVisitsReducer from '../short-urls/reducers/shortUrlVisits';
|
2018-08-15 19:44:54 +03:00
|
|
|
import shortUrlTagsReducer from '../short-urls/reducers/shortUrlTags';
|
2018-06-14 20:42:42 +03:00
|
|
|
|
2018-06-15 22:49:25 +03:00
|
|
|
export default combineReducers({
|
2018-06-14 21:11:41 +03:00
|
|
|
servers: serversReducer,
|
|
|
|
selectedServer: selectedServerReducer,
|
2018-06-15 22:49:25 +03:00
|
|
|
shortUrlsList: shortUrlsListReducer,
|
2018-06-17 18:12:16 +03:00
|
|
|
shortUrlsListParams: shortUrlsListParamsReducer,
|
2018-07-28 11:41:05 +03:00
|
|
|
shortUrlCreationResult: shortUrlCreationResultReducer,
|
2018-08-15 19:44:54 +03:00
|
|
|
shortUrlVisits: shortUrlVisitsReducer,
|
|
|
|
shortUrlTags: shortUrlTagsReducer,
|
2018-06-14 20:42:42 +03:00
|
|
|
});
|