getEntityInfo()

in angular/src/app/stage/namespace-details/namespace-details.component.ts [64:74]


  getEntityInfo() {
    this.namespaceService.info(this.stageEndpoint, this.namespaceCode)
    .subscribe(
      (res: any) => {
        this.entityInfo = res;
      },
      (err: any) => {
        this.formHelperService.showError('Errors.GenericError', null);
      }
    );
  }