:question: Given 2 routes `a/b/x GET ` `a/{p}/x PO...
# ktor
o
Given 2 routes
a/b/x GET
a/{p}/x POST
and sending POST request for
a/b/x
, what is expected? 1️⃣ 404 Not Found, because path matches first route, but doesn’t match anything for a method 2️⃣ 405 Method Not Allowed, because path matches first route, but method cannot be matched 3️⃣ second route is executed with
p
bound to
b
2️⃣ 2
1️⃣ 1
3️⃣ 14