Sha256: 33f49956efdf26b6c96b9d3d294b875a62d6b0eced8f07f6a19c0a89913c8f6b
Contents?: true
Size: 381 Bytes
Versions: 14
Compression:
Stored size: 381 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 } } end
Version data entries
14 entries across 14 versions & 1 rubygems