Cache redesign part 2

This commit is contained in:
Art Lowel
2021-01-20 14:34:08 +01:00
parent 64ba6293c9
commit c66de4fe91
155 changed files with 1610 additions and 1637 deletions

View File

@@ -79,11 +79,10 @@ export class WorkflowItemDataService extends DataService<WorkflowItem> {
hrefObs.pipe(
find((href: string) => hasValue(href)),
map((href: string) => {
const request = new DeleteByIDRequest(requestId, href, id);
this.requestService.configure(request);
})
).subscribe();
).subscribe((href: string) => {
const request = new DeleteByIDRequest(requestId, href, id);
this.requestService.send(request);
});
return this.rdbService.buildFromRequestUUID(requestId);
}