X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f362812f74c69b62e107b094f2508ae7fb8cbbff..054033f76f7a1b80e294cb3f51cd60f4dd8c9400:/src/models/collection.ts diff --git a/src/models/collection.ts b/src/models/collection.ts index cf5b4e68..f8e38f9a 100644 --- a/src/models/collection.ts +++ b/src/models/collection.ts @@ -2,15 +2,10 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { Resource as R } from "./resource"; -import { Resource } from "../common/api/common-resource-service"; -import { ResourceKind } from "./kinds"; +import { ResourceKind, TrashableResource } from "./resource"; -export interface Collection extends R { -} - -export interface CollectionResource extends Resource { - kind: ResourceKind.Collection; +export interface CollectionResource extends TrashableResource { + kind: ResourceKind.COLLECTION; name: string; description: string; properties: any; @@ -19,7 +14,8 @@ export interface CollectionResource extends Resource { replicationDesired: number; replicationConfirmed: number; replicationConfirmedAt: string; - trashAt: string; - deleteAt: string; - isTrashed: boolean; } + +export const getCollectionUrl = (uuid: string) => { + return `/collections/${uuid}`; +};