Reputation: 2563
I added an erb
file to my app under views/pages.
And then I added the routes like below in my routes.rb
file.
get '/pages/track-my-order'
But I am getting the below error
Missing :controller key on routes definition, please check your routes.
What's wrong in the routes?
Upvotes: 3
Views: 5605
Reputation: 814
get '/pages/track-my-order' => 'pages#track-my-order'
or
get '/pages/track-my-order' => 'controller_name#action'
Upvotes: 4