in angular/src/app/stage/namespace-details/namespace-details.component.ts [76:86]
getEntityUsage() {
this.namespaceService.usage(this.stageEndpoint, this.namespaceCode)
.subscribe(
(res: any) => {
this.entityUsage = res;
},
(err: any) => {
this.formHelperService.showError('Errors.GenericError', null);
}
);
}