Merge branch 'master' into 13905-restoring-correct-tree-state-and-panel-item-highligh...
[arvados.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 PROJECT_NAME_VALIDATION = [require, maxLength(255)];
9 export const PROJECT_DESCRIPTION_VALIDATION = [maxLength(255)];