From f7fe08bec2ee46d97356159e2bb54e076ccd0b3c Mon Sep 17 00:00:00 2001 From: Michal Klobukowski Date: Wed, 21 Nov 2018 15:48:53 +0100 Subject: [PATCH] Add collection type enum Feature #14258 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- src/models/collection.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/models/collection.ts b/src/models/collection.ts index 53c62301..2b16ea25 100644 --- a/src/models/collection.ts +++ b/src/models/collection.ts @@ -22,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', +} -- 2.30.2