Dulce-Work-Schedule/2018.1-Dulce_App

View on GitHub
src/Actions/currentUser.js

Summary

Maintainability
A
0 mins
Test Coverage
export const LOGIN = 'LOGIN';
export const LOGOUT = 'LOGOUT';

export function actionLogin(currentUser) {
  return {
    type: LOGIN,
    currentUser: currentUser
  };
}

export function actionLogout() {
  return {
    type: LOGOUT,
    currentUser: {}
  };
}