Ad
How To Disable Csrf For A Specific Route In Sails V1
In previous versions it was possible to disable csrf for specific routes using:
module.exports.csrf = {
"routesDisabled": "/webhooks/testhook,/webhooks/anotherhook"
}
Is there a new way to do that or should I make a small hack in the controller for auto-generate a csrf?
Ad
Answer
Ok I figured it out, now it is done in /routes.js
like this:
'PUT /webhooks/testhook': { action: 'entrance/testhook', csrf: false},
Ad
source: stackoverflow.com
Related Questions
- → Maximum call stack exceeded when instantiating class inside of a module
- → Browserify api: how to pass advanced option to script
- → Node.js Passing object from server.js to external modules?
- → gulp-rename makes copies, but does not replace
- → requiring RX.js in node.js
- → Remove an ObjectId from an array of objectId
- → Can not connect to Redis
- → React: How to publish page on server using React-starter-kit
- → Express - better pattern for passing data between middleware functions
- → Can't get plotly + node.js to stream data coming through POST requests
- → IsGenerator implementation
- → Async/Await not waiting
- → (Socket.io on nodejs) Updating div with mysql data stops without showing error
Ad