Skip to content

Instantly share code, notes, and snippets.

@bnhansn
Created October 21, 2016 15:23
Show Gist options
  • Save bnhansn/8925625bfd1552c33786660e165bd6ec to your computer and use it in GitHub Desktop.
Save bnhansn/8925625bfd1552c33786660e165bd6ec to your computer and use it in GitHub Desktop.
export function authenticate() {
return dispatch => api.post('/sessions/refresh')
.then((response) => {
setCurrentUser(dispatch, response);
})
.catch(() => {
localStorage.removeItem('token');
window.location = '/login';
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment