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 Building Social Features in Ruby on Rails Managing Friendships Creating Model Methods

Mark Lavelle
Mark Lavelle
2,910 Points

Challenge Task 2 Blocked friends

Make the has_blocked? method check to see if the user passed in is in the blocked friends list.

def has_blocked?(other_user)
    blocked_friends.include?(other_user)
end

glitch in my head or the challenge? has to be me so can anyone see what i can't?

1 Answer

Eric Breuers
PLUS
Eric Breuers
Courses Plus Student 19,270 Points

Seems broken... I was stuck on it for a while so I just returned 'true' and passed :)

def has_blocked?(other_user)
    true
end

I'm sure there's a proper way to get around it, but docs, videos and working files didn't help me out. Rest assured it's not just you!