X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/b62944772ff96019c1e497426784690978bb9c96..71b9264c1720e619f8cfcb297a7848ece420c61c:/src/models/group.ts diff --git a/src/models/group.ts b/src/models/group.ts index 5e8d7a1e..e13fbcbf 100644 --- a/src/models/group.ts +++ b/src/models/group.ts @@ -2,20 +2,17 @@ // // 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; + properties: any; writeableBy: string[]; - trashAt: string; - deleteAt: string; - isTrashed: boolean; } export enum GroupClass { PROJECT = "project" -} \ No newline at end of file +}