You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
358 B
15 lines
358 B
8 years ago
|
import { STATUS_CARD_FETCH_SUCCESS } from '../actions/cards';
|
||
|
|
||
|
import Immutable from 'immutable';
|
||
|
|
||
|
const initialState = Immutable.Map();
|
||
|
|
||
|
export default function cards(state = initialState, action) {
|
||
|
switch(action.type) {
|
||
|
case STATUS_CARD_FETCH_SUCCESS:
|
||
|
return state.set(action.id, Immutable.fromJS(action.card));
|
||
|
default:
|
||
|
return state;
|
||
|
}
|
||
|
};
|