scinote-web/app/javascript/packs/shared/reducers/UsersReducer.js
2017-08-09 15:21:02 +02:00

12 lines
270 B
JavaScript

import { SET_CURRENT_USER } from "../../app/action_types";
export function currentUser(
state = { id: 0, fullName: "", avatarPath: "" },
action
) {
if (action.type === SET_CURRENT_USER) {
return Object.assign({}, state, action.payload);
}
return state;
}