mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 23:43:01 +00:00
10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
import { Observable, of as observableOf } from 'rxjs';
|
|
|
|
export class DataServiceStub {
|
|
|
|
invalidateByHref(_href: string): Observable<boolean> {
|
|
return observableOf(true);
|
|
}
|
|
|
|
}
|