Skip to content

Instantly share code, notes, and snippets.

@pieterjongsma
Created October 11, 2017 10:08
Show Gist options
  • Save pieterjongsma/36d14f0991a3fcaf0988c604eac23f03 to your computer and use it in GitHub Desktop.
Save pieterjongsma/36d14f0991a3fcaf0988c604eac23f03 to your computer and use it in GitHub Desktop.
class Event
def attending_friends_for_user(user)
attendees.friends_for(user)
end
end
class User
scope :friends_for, -> (user) { includes(:friendships).where(friendships: { friend_id: user.id }) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment