I am fairly new to alt.js and have a question regarding updating the state in the success handler.
Let's say I have a UserStore and want to delete one User.
I fire the delete user action with the id
of the user which is ought to be deleted. The source sends a delete request with that id
to the backend. The request works and the sources fire the success action.
How do I remove the User from the StoreState in the success action handler, since I don't get the id or any other information about the made request passed?