X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/12fbb73269d10424383cdbd712201498cc8d013a..85c93508dc959ca5491998283565a8e125a56a86:/src/validators/validators.tsx diff --git a/src/validators/validators.tsx b/src/validators/validators.tsx index 755cd7f7..c601df17 100644 --- a/src/validators/validators.tsx +++ b/src/validators/validators.tsx @@ -4,12 +4,12 @@ import { require } from './require'; import { maxLength } from './max-length'; +import { isRsaKey } from './is-rsa-key'; 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)]; @@ -20,4 +20,9 @@ export const COPY_FILE_VALIDATION = [require]; export const MOVE_TO_VALIDATION = [require]; -export const PROCESS_NAME_VALIDATION = [require, maxLength(255)]; \ No newline at end of file +export const PROCESS_NAME_VALIDATION = [require, maxLength(255)]; + +export const REPOSITORY_NAME_VALIDATION = [require, maxLength(255)]; + +export const SSH_KEY_PUBLIC_VALIDATION = [require, isRsaKey, maxLength(1024)]; +export const SSH_KEY_NAME_VALIDATION = [require, maxLength(255)];