client/src/reducers/authReducer.js
author Alexandre Segura <mex.zktk@gmail.com>
Wed, 14 Jun 2017 12:28:09 +0200
changeset 30 4d93f4ed95bc
parent 12 48ddaa42b810
child 44 3b20e2b584fe
permissions -rw-r--r--
Update session in PouchDB.

export const isAuthenticated = (state = false, action) => {
  switch (action.type) {
    default:
      return state;
  }
};