private sendRequest()

in src/datasource.ts [488:496]


  private sendRequest(
    method: string,
    postfix: string,
    body?: any,
    showSuccessAlert = false,
    showErrorAlert = false
  ): Promise<any> {
    return this.fetch(method, postfix, body, showSuccessAlert, showErrorAlert).toPromise();
  }