The goal is to create your own route so that / undead transitions to undead on the ZombiesController.
My code is:
TwitterForZombies::Application.routes.draw do
resources :zombies
match 'show_zombie' => "undead#show"
end
And the error ... "I did not add the correct route, I could not get to ZombiesController # undead."
I'm not sure where I made a mistake ....
source
share