Sails.js provides blueprint routes for GET, PUT, POST, DELETE which are mapped to find/findOne, update, create and destroy actions of the controller. Now, I recently read this article about the functionality of white listing attributes in Rails, which tells which attributes can be updated via mass update, which also secures the API from surprise changes.
I am trying to find out if there is some functionality like that in built in Sails ?