Skip to content

Instantly share code, notes, and snippets.

@dejanvasic85
Created September 24, 2018 07:13
Show Gist options
  • Select an option

  • Save dejanvasic85/144df5e5d5f73638d9a3346791c9f376 to your computer and use it in GitHub Desktop.

Select an option

Save dejanvasic85/144df5e5d5f73638d9a3346791c9f376 to your computer and use it in GitHub Desktop.
export function* request(apiCall) {
const response = yield apiCall
if (response.status === 401) {
yield put(SessionActions.logout())
return null
}
return response
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment