Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6501 | Rev 6745 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6501 Rev 6513
Línea 9... Línea 9...
9
  intro: '',
9
  intro: '',
10
  logo_url: '',
10
  logo_url: '',
11
  navbar_url: '',
11
  navbar_url: '',
12
  remember: false,
12
  remember: false,
13
  site_key: '',
13
  site_key: '',
-
 
14
  isAuth: false,
14
}
15
}
Línea 15... Línea 16...
15
 
16
 
16
const AuthReducer = (state = initialState, action) => {
17
const AuthReducer = (state = initialState, action) => {
Línea 17... Línea 18...
17
  const { type, payload } = action
18
  const { type, payload } = action
18
 
19
 
-
 
20
  const actionCases = {
-
 
21
    [actionsTypes.SET_PERMISSIONS]: { ...state, ...payload },
19
  const actionCases = {
22
    [actionsTypes.LOGIN]: { ...state, isAuth: true },
Línea 20... Línea 23...
20
    [actionsTypes.SET_PERMISSIONS]: { ...state, ...payload },
23
    [actionsTypes.LOGOUT]: { ...state, isAuth: false },
21
  }
24
  }