in angular/src/app/stage/stage-details/stage-details.component.ts [44:54]
searchEntities(endpoint: string) {
this.namespaceService.registry(endpoint)
.subscribe(
(res: any) => {
this.entities = res;
},
(err: any) => {
this.formHelperService.showError('Errors.GenericError', null);
}
);
}