this.actions$.pipe(
      takeUntil(this.onDestroy),
      ofType<AddVoteFail>(ArticleActionTypes.AddVoteFail),
      tap(action => this.messageBarService.showValidationError(action.payload.error))
    ).subscribe();