blob: d65c3c36d8a228df695f42ba89fe7722c1c99ddc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { ACCESS_TOKEN_SET } from '../actions/meta';
import Immutable from 'immutable';
const initialState = Immutable.Map();
export default function meta(state = initialState, action) {
switch(action.type) {
case ACCESS_TOKEN_SET:
return state.set('access_token', action.token);
default:
return state;
}
}
|