Forked from praveenpuglia/same-effect-multiple-actions.ts
Created
May 2, 2019 06:07
-
-
Save truongluu/9c66b1eb2c5446fd335dbcf315d558e9 to your computer and use it in GitHub Desktop.
Same effect for multiple actions - ngrx effects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Effect({dispatch: false}) | |
entityCreationSuccess$: Observable<Action> = this.actions$.pipe( | |
ofType(UserActions.CREATE_USER_SUCCESS, PostActions.CREATE_POST_SUCCESS), | |
tap(action => { | |
this.router.navigate(['../'], {relativeTo: this.route}) | |
}) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment