ozserver
Version:
API for OZ
29 lines (28 loc) • 618 B
JavaScript
module.exports = {
id: {
type: 'string',
len: 24,
required: true,
message: 'Пользователь не определен'
},
firstname_new: {
type: 'string',
required: true,
minLen: 2,
maxLen: 20,
message: 'Неверно заполнено поле Имя',
custom: function(s) {
return s.match(/^([\D]+)$/gi);
}
},
lastname_new: {
type: 'string',
required: true,
minLen: 2,
maxLen: 20,
message: 'Неверно заполнено поле Фамилия',
custom: function(s) {
return s.match(/^([\D]+)$/gi);
}
}
};