Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6500 Rev 6501
Línea 1... Línea 1...
1
import { actionsTypes } from './auth.types'
1
import { actionsTypes } from './auth.types'
Línea 2... Línea 2...
2
 
2
 
-
 
3
const initialState = {
-
 
4
  access_usign_social_networks: '',
-
 
5
  aes: '',
3
const initialState = {
6
  defaultNetwork: '',
-
 
7
  email: '',
-
 
8
  favico_url: '',
-
 
9
  intro: '',
-
 
10
  logo_url: '',
-
 
11
  navbar_url: '',
-
 
12
  remember: false,
4
  permissions: '',
13
  site_key: '',
Línea 5... Línea 14...
5
}
14
}
6
 
15
 
Línea 7... Línea 16...
7
const AuthReducer = (state = initialState, { type, payload }) => {
16
const AuthReducer = (state = initialState, action) => {
8
  console.log('Auth reducer')
17
  const { type, payload } = action
9
 
18
 
Línea 10... Línea 19...
10
  const actionCases = {
19
  const actionCases = {
11
    [actionsTypes.SET_PERMISSIONS]: { ...state, permissions: payload },
20
    [actionsTypes.SET_PERMISSIONS]: { ...state, ...payload },