sails: disable `blueprints actions` in production, since it creates a huge security footprint?
问题 Getting acquinted with Sails for Node. One thing I need to get used to is the 'automagic' way in which routes for controller-methods are set-up using blueprints . For example, from the docs, if actions -blueprints are enabled ( which they are by default ) GET, POST, PUT, and DELETE routes will be generated for every one of a controller's actions. E.g from the docs, when you've got controlled-method EmailController.send the following routes are created: * `EmailController.send` * :::::::::::::