Indentation.

This commit is contained in:
John Livingston 2021-04-16 13:44:24 +02:00
parent 6d63d42e88
commit 9b4b17b326

View File

@ -93,9 +93,12 @@ async function initWebchatRouter (options: RegisterServerOptions): Promise<Route
}) })
changeHttpBindRoute(options, null) changeHttpBindRoute(options, null)
router.all('/http-bind', bodyParser.raw({ type: 'text/xml' }), (req: Request, res: Response, next: NextFunction) => { router.all('/http-bind',
httpBindRoute(req, res, next) bodyParser.raw({ type: 'text/xml' }),
}) (req: Request, res: Response, next: NextFunction) => {
httpBindRoute(req, res, next)
}
)
return router return router
} }