redux-logic
redux-logic copied to clipboard
Is it possible to add multiple actions to the failType?
Is it possible to have more than one action in a success or fail type? I would like to trigger both actions when a fetch has failed.
processOptions: {
dispatchReturn: true,
dispatchMultiple: true,
successType: successAction,
failType: [ failAction, otherAction ] <----------- Something like this?
}