aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/admin/blog/comments_controller.rb
blob: 4c3487cb8777fadb565eb2ca23899c7fc699ecb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Admin::Blog::CommentsController < Admin::BaseController

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

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

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

end