store.dispatch(loginUserSuccess(authSession))
} else {
store.dispatch(loginUserFail())
}
export function findSavedAuthSession () : AuthState | boolean {
const token: ?string = localStorage.getItem('auth_token')
if (token) {
const decoded: Object = jwt(token)
decoded.token = token //
const stillValid: bool = decoded.exp > Date.now() / 1000
return stillValid ? Object.assign(decoded, { token }): false
}
return false
}
Недеюсь идея понятная
Спасибо!
Обсуждают сегодня