From: Michal Klobukowski Date: Wed, 21 Nov 2018 14:48:53 +0000 (+0100) Subject: Add collection type enum X-Git-Tag: 1.3.0~12^2^2~1^2~4^2~2 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/f7fe08bec2ee46d97356159e2bb54e076ccd0b3c Add collection type enum Feature #14258 Arvados-DCO-1.1-Signed-off-by: Michal Klobukowski --- 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', +}