Sha256: 5467e908bf9bd316107ecee5e369815d0b78f93b9e3e27faf3e9798a522ca501
Contents?: true
Size: 497 Bytes
Versions: 14
Compression:
Stored size: 497 Bytes
Contents
class Project < ActiveRecord::Base has_and_belongs_to_many :developers, :uniq => true has_many :topics # :finder_sql => 'SELECT * FROM topics WHERE (topics.project_id = #{id})', # :counter_sql => 'SELECT COUNT(*) FROM topics WHERE (topics.project_id = #{id})' has_many :replies, :through => :topics do def find_recent(params = {}) with_scope :find => { :conditions => ['replies.created_at > ?', 15.minutes.ago] } do find :all, params end end end end
Version data entries
14 entries across 14 versions & 1 rubygems