X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/00bdfaf467fb5b54be2d2b5b638b2394db4f8427..ddfb91e9eee0902fba8b972e2724b2eb4707654a:/src/services/common-service/common-service.ts diff --git a/src/services/common-service/common-service.ts b/src/services/common-service/common-service.ts index 9a5b767306..8e9fe63170 100644 --- a/src/services/common-service/common-service.ts +++ b/src/services/common-service/common-service.ts @@ -107,12 +107,14 @@ export class CommonService { ); } - delete(uuid: string): Promise { + delete(uuid: string, showErrors?: boolean): Promise { this.validateUuid(uuid); return CommonService.defaultResponse( this.serverApi .delete(`/${this.resourceType}/${uuid}`), - this.actions + this.actions, + true, // mapKeys + showErrors ); } @@ -154,6 +156,7 @@ export class CommonService { return CommonService.defaultResponse( this.serverApi.get(`/${this.resourceType}`, { params }), this.actions, + true, showErrors ); } else { @@ -170,6 +173,7 @@ export class CommonService { return CommonService.defaultResponse( this.serverApi.post(`/${this.resourceType}`, formData, {}), this.actions, + true, showErrors ); }