Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 248 Bytes

sails.md

File metadata and controls

11 lines (8 loc) · 248 Bytes

Integrating Waterline in Sails.js

Notes for models

In sails/config/models.js you can add a validations section and define an array of properties to ignore.

	validations: {
		ignoreProperties: [ 'async', 'special']
	},