You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The above code will generate a 404 error when going to /users. The trailing slash must be added to find the route. /users/ is required for the routing to be found.
This is also the situation regardless of the group.
If the path is
.get("/users",()=>{})
going to /users/ also fails.
I think /users should default to the "/users/" route and vice versa.
The text was updated successfully, but these errors were encountered:
The above code will generate a 404 error when going to
/users
. The trailing slash must be added to find the route./users/
is required for the routing to be found.This is also the situation regardless of the group.
If the path is
going to
/users/
also fails.I think
/users
should default to the"/users/"
route and vice versa.The text was updated successfully, but these errors were encountered: