99053: Invalidate cache by default when performing the WorkflowItemActionPageComponent action

This commit is contained in:
Alexandre Vryghem
2023-02-06 18:20:39 +01:00
parent 581afbbbb6
commit 34e970827e
10 changed files with 43 additions and 12 deletions

View File

@@ -0,0 +1,12 @@
import { Observable, of as observableOf } from 'rxjs';
/**
* Stub service for {@link RequestService}.
*/
export class RequestServiceStub {
removeByHrefSubstring(_href: string): Observable<boolean> {
return observableOf(true);
}
}