randallknutson / redux-injector

Allows dynamically injecting reducers into a redux store at runtime
59 stars 14 forks source link

How to reset store on logout? #8

Closed ArulselvanMadhavan closed 7 years ago

ArulselvanMadhavan commented 7 years ago

I am trying to reset my store using the method shown here -> https://stackoverflow.com/questions/35622588/how-to-reset-the-state-of-a-redux-store

randallknutson commented 7 years ago

I typically handle this as part of the reducers, not the store level. Something along the line of listening in each reducer for a 'USER_LOGOUT' and clearing data. This doesn't affect this library though.