Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Ruby Build a Todo List Application with Rails 4 Build a Todo List Application with Rails 4 Viewing Todo Items: Part 1

Routes in this movie

I notice Jason has many more routes on 'rake routes' than I have. He only generated the todo_items controller with index, not edit show etc etc....where did all these routes come from?

1 Answer

Hi Simon,

Jason created all of his routes when he nested resources :todo_items under resources :todo_lists.

Resources creates the collection of routes for index, show, edit, destroy etc. for a specific controller. If you want :todo items to only have a single route for show, then you can specify that like this:

get 'todo_items', to: :show

Thanks bro. I worked this out a little later. I rushed through to quickly so my bad. Many thanks for getting back to me. Much appreciated Joshua

Simon