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