mastodon/app/javascript/mastodon/reducers/meta.js

18 lines
387 B
JavaScript
Raw Normal View History

2017-01-09 12:37:15 +01:00
import { STORE_HYDRATE } from '../actions/store';
import Immutable from 'immutable';
2017-01-09 12:37:15 +01:00
const initialState = Immutable.Map({
streaming_api_base_url: null,
2017-01-09 12:37:15 +01:00
access_token: null,
me: null,
2017-01-09 12:37:15 +01:00
});
export default function meta(state = initialState, action) {
switch(action.type) {
2017-01-09 12:37:15 +01:00
case STORE_HYDRATE:
return state.merge(action.state.get('meta'));
default:
return state;
}
};