Fork me on GitHub
#pedestal
<
2023-10-23
>
simongray12:10:45

I would like all my routes to support a trailing slash too. Do any of you have a plug-and-play solution for that? Other than duplicating every route.

hlship15:10:09

You could have an interceptor examine and modify the :uri request key, to strip off a trailing slash if present.

simongray07:10:19

yeah, I thought that might be the way to go too. Thanks!