mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-18 08:13:17 +00:00
Adding better errors for the API controllers, posting a simple status works from the frontend now
8 lines
196 B
JavaScript
8 lines
196 B
JavaScript
import { combineReducers } from 'redux-immutable';
|
|
import statuses from './statuses';
|
|
import meta from './meta';
|
|
|
|
export default combineReducers({
|
|
statuses,
|
|
meta
|
|
});
|