Merge branch '14512_admin_links'
[arvados-workbench2.git] / src / models / link.ts
index baaff658a205f0cc5427e4a7ff796ebd93b64255..d931f7f21898b394b2b2efb73349838e533532a8 100644 (file)
@@ -4,10 +4,13 @@
 
 import { Resource } from "./resource";
 import { TagProperty } from "~/models/tag";
+import { ResourceKind } from '~/models/resource';
 
 export interface LinkResource extends Resource {
     headUuid: string;
+    headKind: ResourceKind;
     tailUuid: string;
+    tailKind: string;
     linkClass: string;
     name: string;
     properties: TagProperty;
@@ -17,4 +20,5 @@ export enum LinkClass {
     STAR = 'star',
     TAG = 'tag',
     PERMISSION = 'permission',
+    PRESET = 'preset',
 }
\ No newline at end of file