added create-from functionality

This commit is contained in:
lotte
2020-06-29 22:17:41 +02:00
parent 32c8d9de03
commit 1cb0bb72e4
50 changed files with 408 additions and 237 deletions

View File

@@ -13,6 +13,7 @@ import { RemoteData } from '../../core/data/remote-data';
import { Collection } from '../../core/shared/collection.model';
import { SCRIPT } from '../scripts/script.resource-type';
import { Script } from '../scripts/script.model';
import { PaginatedList } from '../../core/data/paginated-list';
/**
* Object representing a process
@@ -83,7 +84,7 @@ export class Process implements CacheableObject {
/**
* The Script that created this Process
* Will be undefined unless the owningCollection {@link HALLink} has been resolved.
* Will be undefined unless the script {@link HALLink} has been resolved.
*/
@link(SCRIPT)
script?: Observable<RemoteData<Script>>;