I am having some trouble with the routes in the Volt framework. I set up my route as follows:
client "/users/{{ id }}", component: 'users', controller: 'main', action: 'profile'
When I navigate to a page to see the profile, everything loads correctly, but the url is:
http://localhost:3000/users?action=profile&id=1234567890
I want the url to look like this:
http://localhost:3000/users/1234567890
Anyone know what I am doing wrong?