Możesz obejść ten problem, definiując niestandardowe zasady walidacji
za pośrednictwem obiektu types. W szczególności dany problem można rozwiązać, definiując niestandardowy size
walidator, który zawsze zwraca prawdę.
// api/models/player.js
module.exports = {
types: {
size: function() {
return true;
}
},
attributes: {
username: {
type: 'string',
unique: true,
minLength: 4,
maxLength: 32,
size: 32,
required: true
}
}
}