client/src/reducers/miscReducer.js
author Riwad Salim
Wed, 15 Aug 2018 23:39:02 +0200
changeset 145 5d2bc8c877ea
parent 129 d48946d164c6
permissions -rw-r--r--
Adding class for specific css in App, Navbar and SessionList components

import * as types from '../constants/actionTypes';

export const autoSubmit = (state = false, action) => {
  switch (action.type) {
    case types.USER_TOGGLE_AUTO_SUBMIT:
      return action.value;
    default:
      return state;
  }
}

export const online = (state = false, action) => {
  switch (action.type) {
    case types.STATUS_ONLINE:
      return true;
    case types.STATUS_OFFLINE:
      return false;
    default:
      return state;
  }

}