aboutsummaryrefslogblamecommitdiffstats
path: root/app/controllers/admin/blog/comments_controller.rb
blob: ba9593ac5db67114519b1d43f02c8e1a270b7fb5 (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                                               




                                            










                                         
class Admin::Blog::CommentsController < Admin::BaseController

  crudify :blog_comment, :title_attribute => :name, :order => 'created_at DESC'

  def index
    @blog_comments = BlogComment.unmoderated
    render :action => 'index'
  end

  def approved
    @blog_comments = BlogComment.approved
    render :action => 'index'
  end

  def rejected
    @blog_comments = BlogComment.rejected
    render :action => 'index'
  end

end