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 trialSlimane Bouabbane
6,385 PointsCan 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 ?
Rails.application.routes.draw do
resources :pets
get '/pets/:id', to: 'pet#show'
end
2 Answers
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.
Slimane Bouabbane
6,385 PointsThis has worked. Thanks !
Slimane Bouabbane
6,385 PointsSlimane Bouabbane
6,385 PointsI meant I AM struggling