Sha256: 15f81bcbf8d37058dcee2150f2f6f742ae74d97391be950fa07a9c67c59ecaaa
Contents?: true
Size: 432 Bytes
Versions: 8
Compression:
Stored size: 432 Bytes
Contents
class Topic < ActiveRecord::Base has_many :replies, :dependent => :destroy, :order => 'replies.created_at DESC' belongs_to :project named_scope :mentions_activerecord, :conditions => ['topics.title LIKE ?', '%ActiveRecord%'] named_scope :with_replies_starting_with, lambda { |text| { :conditions => "replies.content LIKE '#{text}%' ", :include => :replies } } def self.paginate_by_definition_in_class; end end
Version data entries
8 entries across 8 versions & 5 rubygems