Skip to content

Instantly share code, notes, and snippets.

@apotox
Last active March 20, 2020 23:57
Show Gist options
  • Save apotox/8b750511e8337c996916ff3d12d04805 to your computer and use it in GitHub Desktop.
Save apotox/8b750511e8337c996916ff3d12d04805 to your computer and use it in GitHub Desktop.
async redux action to delete items from remote
export const DELETE_ITEMS = payload => {
return (dispatch, getState, api) => {
api.delete(`items?ids=${payload}`)
.then(() => {
//dispatch(SUCCESS_NOTIFICATION())
})
.catch(err => {
//dispatch(FAILED_NOTIFICATION(err.message))
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment