I have the following routes, which allows for urls like /:username/:project_name
resources :users, :path => "/" do
resources :projects, :path => "/"
end
The problem is that /:username/edit doesn't work, because it is looking for a project with the name of 'edit'.
Any way around this? Thanks!