blob: bd12f2238f3263e7434fa09224fbace112771e89 (
plain) (
tree)
|
|
class BlogPost < ActiveRecord::Base
has_many :comments, :class_name => 'BlogComment'
has_and_belongs_to_many :categories, :class_name => 'BlogCategory'
acts_as_indexed :fields => [:title, :body]
validates_presence_of :title
validates_uniqueness_of :title
has_friendly_id :title, :use_slug => true
default_scope :order => "created_at DESC"
named_scope :live, :conditions => {:draft => false}
end
|