aboutsummaryrefslogtreecommitdiffstats
path: root/app/models/blog_comment.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/blog_comment.rb')
-rw-r--r--app/models/blog_comment.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/models/blog_comment.rb b/app/models/blog_comment.rb
index ada3f14..aced256 100644
--- a/app/models/blog_comment.rb
+++ b/app/models/blog_comment.rb
@@ -6,4 +6,21 @@ class BlogComment < ActiveRecord::Base
named_scope :approved, :conditions => {:approved => true}
named_scope :rejected, :conditions => {:approved => false}
+
+ module Moderation
+ class << self
+ def enabled?
+ RefinerySetting.find_or_set(:comment_moderation, {
+ :value => true,
+ :scoping => :blog
+ })
+ end
+
+ def toggle
+ currently = self.enabled?
+ RefinerySetting[:comment_moderation] = !currently
+ end
+ end
+ end
+
end