getSchemaResource()

in angular/src/app/stage/namespace-details/namespace-details.component.ts [88:98]


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