mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-02-12 08:08:48 +00:00
7 lines
178 B
JavaScript
7 lines
178 B
JavaScript
import { maxLength, minLength, required } from '@vuelidate/validators'
|
|
|
|
export const passwordValidation = {
|
|
required,
|
|
maxLength: maxLength(256),
|
|
minLength: minLength(8),
|
|
}
|