Let’s say I have a resource defined… map.resources :user do |user| user.resource :profile user.resource :foo end
I’ve got everything working so to_param spits out the username instead of the id, so now I have urls like
/user/homer /user/homer/profile /user/homer/foo
How would one go about removing the /user/ from the route? Is it possible?