Stefan Momcilovic

Results 2 comments of Stefan Momcilovic

I found this solution for now. ``` server.use(async (ctx, next) => { if (ctx.path === '/webhooks') ctx.disableBodyParser = true; await next(); }); server.use(bodyParser()); ```