Sha256: 8f47d1d30ba6312d84a2006855c7c242b38464f8fd0f5b0af07392f408ed1252
Contents?: true
Size: 383 Bytes
Versions: 32
Compression:
Stored size: 383 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
32 entries across 32 versions & 20 rubygems