setSchemaResource()

in angular/src/app/stage/namespace-details/namespace-details.component.ts [124:135]


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