getSchemaMetadata()

in angular/src/app/stage/namespace-details/namespace-details.component.ts [100:110]


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