can i put a namespaced key in a route url? like :foo/bar
?
/users/:user/id/contacts
Where the namespace key is :user/id
Hi @caleb.macdonaldblack! That won’t work as you’re expecting. :user
will be interpreted as the path parameter, not :user/id
.
Okay cool. I didn't expect that to work however I wasn't sure if there was another way to achieve that. Perhaps by escaping or something