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

Casey Clayton
Casey Clayton
16,708 Points

Building Social Features Code Challange

It asks Set the flash error messages if there is no friend_id parameter, so I have.

if params[:friend_id]
  @friend = User.find(params[:friend_id]
else
  flash[:error] = "Friend Required"
end

1 Answer

Brandon Barrette
Brandon Barrette
20,485 Points

Make sure that is inside the new action. I just tested it and it worked for me.

Casey Clayton
Casey Clayton
16,708 Points

The code challenge automatically supplied the def for the new method. But it is still not passing, and doesn't really tell me what is wrong with the code.

Casey Clayton
Casey Clayton
16,708 Points

Oddly enough I fixed it by deleting everything in the challenge and retyping it all