2016-11-20 13:39:18 -05:00
|
|
|
import { combineReducers } from 'redux-immutable';
|
|
|
|
import timelines from './timelines';
|
|
|
|
import meta from './meta';
|
|
|
|
import alerts from './alerts';
|
2016-09-19 17:25:59 -04:00
|
|
|
import { loadingBarReducer } from 'react-redux-loading-bar';
|
2016-11-20 13:39:18 -05:00
|
|
|
import modal from './modal';
|
|
|
|
import user_lists from './user_lists';
|
|
|
|
import accounts from './accounts';
|
2017-05-02 20:04:16 -04:00
|
|
|
import accounts_counters from './accounts_counters';
|
2016-11-20 13:39:18 -05:00
|
|
|
import statuses from './statuses';
|
|
|
|
import relationships from './relationships';
|
2017-01-09 08:00:55 -05:00
|
|
|
import settings from './settings';
|
2017-07-13 16:15:32 -04:00
|
|
|
import push_notifications from './push_notifications';
|
2017-01-16 07:27:58 -05:00
|
|
|
import status_lists from './status_lists';
|
2017-01-19 19:00:14 -05:00
|
|
|
import cards from './cards';
|
2017-11-14 21:56:41 -05:00
|
|
|
import mutes from './mutes';
|
2017-02-14 14:59:26 -05:00
|
|
|
import reports from './reports';
|
2017-06-11 11:07:35 -04:00
|
|
|
import contexts from './contexts';
|
2017-07-09 06:16:08 -04:00
|
|
|
import compose from './compose';
|
|
|
|
import search from './search';
|
|
|
|
import media_attachments from './media_attachments';
|
|
|
|
import notifications from './notifications';
|
2017-09-13 04:24:33 -04:00
|
|
|
import height_cache from './height_cache';
|
2017-09-22 23:40:28 -04:00
|
|
|
import custom_emojis from './custom_emojis';
|
2017-11-24 18:35:37 -05:00
|
|
|
import lists from './lists';
|
2017-12-05 17:02:27 -05:00
|
|
|
import listEditor from './list_editor';
|
2016-08-24 11:56:44 -04:00
|
|
|
|
2017-07-07 18:06:02 -04:00
|
|
|
const reducers = {
|
2016-08-31 10:15:12 -04:00
|
|
|
timelines,
|
|
|
|
meta,
|
2016-11-20 13:39:18 -05:00
|
|
|
alerts,
|
2016-09-19 17:25:59 -04:00
|
|
|
loadingBar: loadingBarReducer,
|
2016-10-24 12:07:40 -04:00
|
|
|
modal,
|
2016-10-27 15:59:56 -04:00
|
|
|
user_lists,
|
2017-01-16 07:27:58 -05:00
|
|
|
status_lists,
|
2016-10-30 10:06:43 -04:00
|
|
|
accounts,
|
2017-05-02 20:04:16 -04:00
|
|
|
accounts_counters,
|
2016-10-30 10:06:43 -04:00
|
|
|
statuses,
|
2016-11-13 07:04:18 -05:00
|
|
|
relationships,
|
2017-01-19 19:00:14 -05:00
|
|
|
settings,
|
2017-07-13 16:15:32 -04:00
|
|
|
push_notifications,
|
2017-02-14 14:59:26 -05:00
|
|
|
cards,
|
2017-11-14 21:56:41 -05:00
|
|
|
mutes,
|
2017-05-20 11:31:47 -04:00
|
|
|
reports,
|
2017-06-11 11:07:35 -04:00
|
|
|
contexts,
|
2017-07-09 06:16:08 -04:00
|
|
|
compose,
|
|
|
|
search,
|
|
|
|
media_attachments,
|
|
|
|
notifications,
|
2017-09-13 04:24:33 -04:00
|
|
|
height_cache,
|
2017-09-22 23:40:28 -04:00
|
|
|
custom_emojis,
|
2017-11-24 18:35:37 -05:00
|
|
|
lists,
|
2017-12-05 17:02:27 -05:00
|
|
|
listEditor,
|
2017-07-07 18:06:02 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
export default combineReducers(reducers);
|