Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save truongluu/9c66b1eb2c5446fd335dbcf315d558e9 to your computer and use it in GitHub Desktop.
Save truongluu/9c66b1eb2c5446fd335dbcf315d558e9 to your computer and use it in GitHub Desktop.
Same effect for multiple actions - ngrx effects
@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