aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/blog_post.rb
blob: 481b8cb76cafb190e52ad7d65af8e045ea13ad98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class BlogPost < ActiveRecord::Base

  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