X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a080578919155fc6f6d1be2f966951b629ae5b45..35d6c5a870aeff7bb2cbf6ec80d306debad872c1:/src/models/group.ts diff --git a/src/models/group.ts b/src/models/group.ts index 5e8d7a1e0b..e18c8ecbb9 100644 --- a/src/models/group.ts +++ b/src/models/group.ts @@ -2,20 +2,18 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { Resource, ResourceKind } from "./resource"; +import { ResourceKind, TrashableResource } from "./resource"; -export interface GroupResource extends Resource { +export interface GroupResource extends TrashableResource { kind: ResourceKind.GROUP; name: string; groupClass: GroupClass | null; description: string; - properties: string; - writeableBy: string[]; - trashAt: string; - deleteAt: string; - isTrashed: boolean; + properties: any; + writableBy: string[]; + ensure_unique_name: boolean; } export enum GroupClass { PROJECT = "project" -} \ No newline at end of file +}