1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-20 07:29:36 +00:00
bramw_baserow/web-frontend/modules/core/validators.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
393 B
JavaScript
Raw Normal View History

/*
In case the password validation rules change the PasswordInput component
needs to be updated as well in order to display possible new error messages
modules/core/components/helpers/PasswordInput.vue
*/
2025-02-17 13:17:35 +00:00
import { maxLength, minLength, required } from '@vuelidate/validators'
export const passwordValidation = {
required,
maxLength: maxLength(256),
minLength: minLength(8),
}