Kujtim Hoxha
10/08/2021, 9:48 PM/
gracefully e.x abc/hello/{123}
and abc/hello/{123}/
should be both accepted and go to the same functionFrank
Frank
Kujtim Hoxha
10/09/2021, 1:59 PMFrank
route: {
"GET abc/hello/{123}": "hello.main",
"GET abc/hello/{123}/": "hello.main",
}
Do you know if this works?Kujtim Hoxha
10/11/2021, 8:10 AMFrank
PÄl Brattberg
03/06/2022, 3:41 PM"GET /orders": "src/list-orders.handler",
"GET /orders/{id}": "src/get-order.handler"
And of course, somebody will access /orders/. Do others just add extra routes? A bit tedious when we have many routes... đPĂ„l Brattberg
03/06/2022, 3:43 PMError: A route path must always start with a "/" and not end with a "/"
Frank
Frank
/
.PÄl Brattberg
03/07/2022, 8:39 AM