Closed jvverde closed 4 years ago
Thanks for the fix @jvverde. Would you mind adding a test case for this issue?
Curious why we couldn't just add this to our router.spec ? is it because the file is too large as it is?
Thanks for the fix @jvverde. Would you mind adding a test case for this issue?
I am not used to pull request to others code, so it was my ignorance how to proceed. But I can do that.
Thanks!
Just add two variables and change two lines.
My Problem was:
router.group('/v1', (router) => { router.group('/auth', ...) router.group('/user', ...) })
routes under /user lost v1 prefix. I expected /v1/user/info and I got /user/info
Best regards