mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
20 lines
469 B
TypeScript
20 lines
469 B
TypeScript
import { BehaviorSubject, of as observableOf } from 'rxjs';
|
|
|
|
export class SearchConfigurationServiceStub {
|
|
|
|
private searchOptions: BehaviorSubject<any> = new BehaviorSubject<any>({});
|
|
private paginatedSearchOptions: BehaviorSubject<any> = new BehaviorSubject<any>({});
|
|
|
|
getCurrentFrontendFilters() {
|
|
return observableOf([]);
|
|
}
|
|
|
|
getCurrentScope(a) {
|
|
return observableOf('test-id');
|
|
}
|
|
|
|
getCurrentConfiguration(a) {
|
|
return observableOf(a);
|
|
}
|
|
}
|