this.actions$.pipe(
      takeUntil(this.onDestroy),
      ofType<AddArticleSuccess>(ArticleActionTypes.AddArticleSuccess),
      tap(action => this.router.navigate([`${this.auth.loginUser.userId}`, 'articles', action.payload.article._id]))
    ).subscribe();