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 Rails Routes and Resources A Route to a Read Action Set Up a URL Parameter

Slimane Bouabbane
Slimane Bouabbane
6,385 Points

Can you help with this challenge

I am not struggling with this challenge. Where do you define the id ? Is it with param ? Also what is the sequence 3 27 etc... Are we looking at 2 instances of Pets ?

routes.rb
Rails.application.routes.draw do
  resources :pets
  get '/pets/:id', to: 'pet#show' 
end

2 Answers

William Li
PLUS
William Li
Courses Plus Student 26,868 Points
  • delete line #2, as it's not needed.
  • pet#show, you forgot the s for pet.
Rails.application.routes.draw do
  get '/pets/:id', to: 'pets#show' 
end

Your code should pass now.