added-attributes-dialog-and-init-creating-repos
[arvados-workbench2.git] / src / validators / validators.tsx
index 389e8cdfd140cd32b6e372a5bee3c0352680e8f4..37c1bd37458dc50cd293d4f9c9bf85ad2cb7311f 100644 (file)
@@ -9,10 +9,16 @@ export const TAG_KEY_VALIDATION = [require, maxLength(255)];
 export const TAG_VALUE_VALIDATION = [require, maxLength(255)];
 
 export const PROJECT_NAME_VALIDATION = [require, maxLength(255)];
-export const PROJECT_DESCRIPTION_VALIDATION = [maxLength(255)];
 
 export const COLLECTION_NAME_VALIDATION = [require, maxLength(255)];
 export const COLLECTION_DESCRIPTION_VALIDATION = [maxLength(255)];
 export const COLLECTION_PROJECT_VALIDATION = [require];
 
-export const MOVE_TO_VALIDATION = [require];
\ No newline at end of file
+export const COPY_NAME_VALIDATION = [require, maxLength(255)];
+export const COPY_FILE_VALIDATION = [require];
+
+export const MOVE_TO_VALIDATION = [require];
+
+export const PROCESS_NAME_VALIDATION = [require, maxLength(255)];
+
+export const REPOSITORY_NAME_VALIDATION = [require, maxLength(255)];
\ No newline at end of file