Merge branch 'master' into 13853-collection-view-info-card
[arvados-workbench2.git] / src / models / group.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { Resource, ResourceKind } from "./resource";
6
7 export interface GroupResource extends Resource {
8     kind: ResourceKind.GROUP;
9     name: string;
10     groupClass: GroupClass | null;
11     description: string;
12     properties: string;
13     writeableBy: string[];
14     trashAt: string;
15     deleteAt: string;
16     isTrashed: boolean;
17 }
18
19 export enum GroupClass {
20     PROJECT = "project"
21 }