# File app/models/attendance.rb, line 42 def self.for_conference(conf) conf = Conference.find_by_id(conf) if conf.is_a? Fixnum self.find(:all, :conditions => ['timeslot_id in (?)', conf.timeslot_ids], :include => :person) end