custom
Use custom validators for needs that are more specific than can be handled with our provided validators
export default class User extends Dream {
public readonly get table() {
return 'users' as const
}
public id: string
@Validate()
public ensureEmailValid() {
if (...) {
throw new ValidationError(this.constructor.name, {
email: ['email is not valid'],
})
}
}
}