beforeValidation() didn't invoke when the Model.create(obj)
was called.
modele.exports = {
attributes : {},
beforeValidation : function(values, next){
console.log("Hello I am here"); //it didn't invoke when Model.create(obj)exec(); was called
}
}
I am using sails 0.10.0-rc4 and Waterline 0.10.0-rc3.
Thank you.
Update :
Solution : sails beforeValidation not called