Closed
Description
Description
routing-controllers
registers all routes with trailing slashes (eg. /user/
). Updated router do not automagically removes the trailing slash. Meaning accessing routes without trailing slash returns 404.
Related issue: koajs/router#79
Expected behavior
GET /user -> 200
GET /user/ -> 200 (as previously, or 404)
Actual behavior
GET /user -> 404
GET /user/ -> 200