findStage()

in angular/src/app/stage/stage-details/stage-details.component.ts [31:42]


  findStage(stageCode) {
    this.stageService.list()
    .subscribe(
      (res: any) => {
        this.stage = res.find(c => c.code === stageCode);
        this.searchEntities(this.stage.endpoint)
      },
      (err: any) => {
        this.formHelperService.showError('Errors.GenericError', null);
      }
    );
  }