1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-12 08:08:48 +00:00
bramw_baserow/web-frontend/modules/core/validators.js
2024-11-11 12:06:47 +04:00

7 lines
178 B
JavaScript

import { maxLength, minLength, required } from '@vuelidate/validators'
export const passwordValidation = {
required,
maxLength: maxLength(256),
minLength: minLength(8),
}