I am facing a problem finding the request and response objects given by ExpressJS. I made an endpoint in /server/boot/root.js like bellow. I don't want this endpoint to bind with any model.
router.get('/playing/:param1/:param2',function(ctx){
console.log(ctx.req); // prints undefined
} );
How to get the regular ExpressJS request and response object so that I can handle this by my own will?