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
Kris seems to have an issue with a route that's setup like this:
@:path("/product")
class MyRoute {
@:post("/:myarg")
function myFunc(myarg : String) { ... }
}
If he does POST /product/something it gets a 404, but if he changes the function meta to @:post("/x/:myarg") and does POST /product/x/something it works.
The text was updated successfully, but these errors were encountered:
Kris seems to have an issue with a route that's setup like this:
If he does
POST /product/something
it gets a 404, but if he changes the function meta to@:post("/x/:myarg")
and doesPOST /product/x/something
it works.The text was updated successfully, but these errors were encountered: