aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/controllers/admin/blog/comments_controller.rb5
-rw-r--r--app/models/blog_comment.rb5
2 files changed, 8 insertions, 2 deletions
diff --git a/app/controllers/admin/blog/comments_controller.rb b/app/controllers/admin/blog/comments_controller.rb
index 4c3487c..ba9593a 100644
--- a/app/controllers/admin/blog/comments_controller.rb
+++ b/app/controllers/admin/blog/comments_controller.rb
@@ -2,6 +2,11 @@ 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'
diff --git a/app/models/blog_comment.rb b/app/models/blog_comment.rb
index d9e1917..cab2227 100644
--- a/app/models/blog_comment.rb
+++ b/app/models/blog_comment.rb
@@ -4,8 +4,9 @@ class BlogComment < ActiveRecord::Base
acts_as_indexed :fields => [:name, :email, :body]
- named_scope :approved, :conditions => {:approved => true}
- named_scope :rejected, :conditions => {:approved => false}
+ named_scope :unmoderated, :conditions => {:state => nil}
+ named_scope :approved, :conditions => {:state => 'approved'}
+ named_scope :rejected, :conditions => {:state => 'rejected'}
module Moderation
class << self