aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers/admin/blog/comments_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/admin/blog/comments_controller.rb')
-rw-r--r--app/controllers/admin/blog/comments_controller.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/controllers/admin/blog/comments_controller.rb b/app/controllers/admin/blog/comments_controller.rb
new file mode 100644
index 0000000..4c3487c
--- /dev/null
+++ b/app/controllers/admin/blog/comments_controller.rb
@@ -0,0 +1,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