@Effect({ dispatch: false })
  checkForNewAppVersion$ = this.actions$.pipe(
    ofType(fromAppCore.ActionTypes.APP_CHECK_VERSION),
    map(() => this.versionCheckerService.checkForVersion())
  );