]> git.openstreetmap.org Git - rails.git/blobdiff - lib/redactable.rb
Vagrant deploy works
[rails.git] / lib / redactable.rb
index d8367d7bdf766741aa9b57a244a16c92786e4885..620b2196eeaea663af4774cedb5e783385cff1b4 100644 (file)
@@ -4,7 +4,7 @@ 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?