e87390adb9
* update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * update eslint and dependencies, fix linting errors that can be fixed with --fix * fix lots of linting errors * update eslintrc, fix some linting errors * fix all server side linting errors, untested * fix errors that fixing linting errors had caused * fix client side eslint errors * fix client side linting errors * fix refs lint errors * fix more linting errors * fix some accessibility linting errors * fix a lot of linting errors * fix a billion more linting errors * hopefully fix all linting errors, still need to test * fix bugs that fixing linting had caused
27 lines
820 B
JavaScript
27 lines
820 B
JavaScript
import * as ActionTypes from '../../constants';
|
|
|
|
const user = (state = { authenticated: false }, action) => {
|
|
switch (action.type) {
|
|
case ActionTypes.AUTH_USER:
|
|
return { ...action.user,
|
|
authenticated: true };
|
|
case ActionTypes.UNAUTH_USER:
|
|
return {
|
|
authenticated: false
|
|
};
|
|
case ActionTypes.AUTH_ERROR:
|
|
return {
|
|
authenticated: false
|
|
};
|
|
case ActionTypes.RESET_PASSWORD_INITIATE:
|
|
return Object.assign({}, state, { resetPasswordInitiate: true });
|
|
case ActionTypes.RESET_PASSWORD_RESET:
|
|
return Object.assign({}, state, { resetPasswordInitiate: false });
|
|
case ActionTypes.INVALID_RESET_PASSWORD_TOKEN:
|
|
return Object.assign({}, state, { resetPasswordInvalid: true });
|
|
default:
|
|
return state;
|
|
}
|
|
};
|
|
|
|
export default user;
|