I have a route defined as:
router.get('/console/:labID?', (req, res, next) => {
When this route gets called, all additional requests are appended to /console to give you a request similar to :
/console/<new request>
I'm assuming this is intended functionality and I need to reset the route somewhere based on the request? Occasionally I will want to append it but where do I control this behavior?