projects
/
arvados-workbench2.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Extract permission types, create model and service
[arvados-workbench2.git]
/
src
/
models
/
link.ts
1
// Copyright (C) The Arvados Authors. All rights reserved.
2
//
3
// SPDX-License-Identifier: AGPL-3.0
4
5
import { Resource } from "./resource";
6
7
export interface LinkResource extends Resource {
8
headUuid: string;
9
tailUuid: string;
10
linkClass: string;
11
name: string;
12
properties: {};
13
}
14
15
export enum LinkClass {
16
STAR = 'star',
17
TAG = 'tag',
18
PERMISSION = 'permission',
19
}