redux-form-validation
[arvados-workbench2.git] / src / validators / create-project / create-project-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 NAME = [require, maxLength(255)];
9 export const DESCRIPTION = [maxLength(255)];