Created
July 22, 2009 20:40
-
-
Save mbleigh/152257 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SoundWalk < ActiveRecord::Base | |
belongs_to :user | |
named_scope :from_users, lambda{ |users| {:conditions => ["user_id IN (?)", users.collect{|u| u.id}]} } | |
end | |
class User < ActiveRecord::Base | |
def friend_soundwalks | |
SoundWalk.from_users(self.friends) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment