mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 10:34:15 +00:00
72403: Support for process output on detail page
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
import { PROCESS_OUTPUT_TYPE } from '../../core/shared/process-output.resource-type';
|
||||
import { ProcessOutput } from './process-output.model';
|
||||
import { ProcessStatus } from './process-status.model';
|
||||
import { ProcessParameter } from './process-parameter.model';
|
||||
import { CacheableObject } from '../../core/cache/object-cache.reducer';
|
||||
@@ -85,4 +87,11 @@ export class Process implements CacheableObject {
|
||||
*/
|
||||
@link(SCRIPT)
|
||||
script?: Observable<RemoteData<Script>>;
|
||||
|
||||
/**
|
||||
* The output logs created by this Process
|
||||
* Will be undefined unless the output {@link HALLink} has been resolved.
|
||||
*/
|
||||
@link(PROCESS_OUTPUT_TYPE)
|
||||
output?: Observable<RemoteData<ProcessOutput>>;
|
||||
}
|
||||
|
Reference in New Issue
Block a user