I have many REST routes in my application, including
map.resources :users
This works well, and my url ends up /users/2 for a specific user. However, how do I use resources when I want my specific user url ( user_url(2) ) to be:
/users/2-john-smith
Do I need to create all the routes manually? I didn't see an option in map.resources that would let me do that.