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

18 lines
485 B
JavaScript
Raw Normal View History

2017-12-04 01:26:40 -06:00
import { STORE_HYDRATE } from 'flavours/glitch/actions/store';
import { Map as ImmutableMap } from 'immutable';
const initialState = ImmutableMap({
streaming_api_base_url: null,
2017-01-09 05:37:15 -06:00
access_token: null,
permissions: '0',
2017-01-09 05:37:15 -06:00
});
export default function meta(state = initialState, action) {
switch(action.type) {
2017-01-09 05:37:15 -06:00
case STORE_HYDRATE:
return state.merge(action.state.get('meta')).set('permissions', action.state.getIn(['role', 'permissions']));
2017-01-09 05:37:15 -06:00
default:
return state;
}
};