aboutsummaryrefslogblamecommitdiffstats
path: root/app/models/blog_category.rb
blob: bc0165a776dc1055df1468fc92e25e4ab4b00110 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                       
                           
                                                                      
 

                                     
                                                          

                                           
 
                
                               
     
 
   
class BlogCategory < ActiveRecord::Base

  has_many :categorizations
  has_many :posts, :through => :categorizations, :source => :blog_post

  acts_as_indexed :fields => [:title]

  validates :title, :presence => true, :uniqueness => true

  has_friendly_id :title, :use_slug => true

  def post_count
    posts.select(&:live?).count
  end

end