arvindgemini

Results 7 comments of arvindgemini

@KaidiMohammed This is working if we use callback function but it return Access-Control-Allow-Origin: * instead of Access-Control-Allow-Origin: http://domainname.com in request header.

It is working with HS256 Algorithm

@LiranBri Yes please make the changes to accept multiple callback in the form of array.

@LiranBri I have made the changes to accept array of callback and returning **versionRouter** as it is in case of array. We are not getting the response of API. Please...

@lirantal router.use will use all the methods as middle-ware, because of this we have to create router object for each version and each route. Do you think this is a...

@lirantal Please find my code sample below const routesMap = new Map(); const route = Router(); export default (app: Router) => { app.use('/version-customer', route); var cb1 = function(req, res, next)...