]> git.openstreetmap.org Git - rails.git/blobdiff - lib/redactable.rb
Cleanup trailing whitespace
[rails.git] / lib / redactable.rb
index d8367d7bdf766741aa9b57a244a16c92786e4885..b7f7046be2d0c8524b2642f4f2dd4ad8eb0fef69 100644 (file)
@@ -4,9 +4,9 @@ module Redactable
   def self.included(base)
     # this is used to extend activerecord bases, as these aren't
     # in scope for the module itself.
-    base.scope :unredacted, base.where(:redaction_id => nil)
+    base.scope :unredacted, -> { base.where(:redaction_id => nil) }
   end
-  
+
   def redacted?
     not self.redaction.nil?
   end