mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 10:34:15 +00:00
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import { Observable, EMPTY } from 'rxjs';
|
|
import { ProcessTaskResponse } from '../../core/tasks/models/process-task-response';
|
|
|
|
export class ClaimedTaskDataServiceStub {
|
|
|
|
public submitTask(_scopeId: string, _body: any): Observable<ProcessTaskResponse> {
|
|
return EMPTY;
|
|
}
|
|
|
|
}
|