X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/90781150a1b0a32c8d0f2f519f5c485542058744..c7e85a03f2726bd20bc10aeb9edb2cc826f16909:/src/models/collection.ts diff --git a/src/models/collection.ts b/src/models/collection.ts index a25afeb128..2b16ea2523 100644 --- a/src/models/collection.ts +++ b/src/models/collection.ts @@ -14,7 +14,6 @@ export interface CollectionResource extends TrashableResource { replicationDesired: number; replicationConfirmed: number; replicationConfirmedAt: string; - fileNames: string; storageClassesDesired: string[]; storageClassesConfirmed: string[]; storageClassesConfirmedAt: string; @@ -23,3 +22,9 @@ export interface CollectionResource extends TrashableResource { export const getCollectionUrl = (uuid: string) => { return `/collections/${uuid}`; }; + +export enum CollectionType { + GENERAL = 'nil', + OUTPUT = 'output', + LOG = 'log', +}