93889: Invalidate EPerson when their Groups change and groups when a subgroup is added

This commit is contained in:
Alexandre Vryghem
2022-08-16 18:27:01 +02:00
parent f6d2014bf4
commit 762f8930b7
5 changed files with 222 additions and 16 deletions

View File

@@ -0,0 +1,9 @@
import { Observable, of as observableOf } from 'rxjs';
export class DataServiceStub {
invalidateByHref(_href: string): Observable<boolean> {
return observableOf(true);
}
}