raniantheone
raniantheone
> var ROTATE_MODULE = JSON.parse(conf.rotateModule) || false; // It was true before > > This worked for me. I would like to second @mayur1508 's comment. `var ROTATE_MODULE = JSON.parse(conf.rotateModule)...
@joeylgutierrez I have similar requirement to yours. My current workaround is adding an error handling middleware right after openapi validator (since express middleware runs in order, and my other middlewares...
I would like to second this support. Currently I have similar requirement in validating requests that accept an array containing several forms of objects. My workaround is to define an...