setSchemaMetadata()

in angular/src/app/stage/namespace-details/namespace-details.component.ts [137:148]


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