Create collection files upload dialog
[arvados-workbench2.git] / src / validators / create-collection / create-collection-validator.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { require } from '../require';
6 import { maxLength } from '../max-length';
7
8 export const COLLECTION_NAME_VALIDATION = [require, maxLength(255)];
9 export const COLLECTION_DESCRIPTION_VALIDATION = [maxLength(255)];