2016-08-31 14:15:12 +00:00
|
|
|
import { ACCESS_TOKEN_SET } from '../actions/meta';
|
2016-08-26 17:12:19 +00:00
|
|
|
import Immutable from 'immutable';
|
|
|
|
|
|
|
|
const initialState = Immutable.Map();
|
|
|
|
|
|
|
|
export default function meta(state = initialState, action) {
|
|
|
|
switch(action.type) {
|
2016-08-31 14:15:12 +00:00
|
|
|
case ACCESS_TOKEN_SET:
|
2016-08-26 17:12:19 +00:00
|
|
|
return state.set('access_token', action.token);
|
|
|
|
default:
|
|
|
|
return state;
|
|
|
|
}
|
2016-09-12 17:20:55 +00:00
|
|
|
};
|