Commit e302d75e by John Hawthorn

Merge pull request #184 from nyjt/rails4

Add paranoia_scope as named version of default_scope
parents fef2314c 2f44481f
......@@ -182,7 +182,10 @@ class ActiveRecord::Base
self.paranoia_column = (options[:column] || :deleted_at).to_s
self.paranoia_sentinel_value = options.fetch(:sentinel_value) { Paranoia.default_sentinel_value }
default_scope { where(table_name => { paranoia_column => paranoia_sentinel_value }) }
def self.paranoia_scope
where(table_name => { paranoia_column => paranoia_sentinel_value })
end
default_scope { paranoia_scope }
before_restore {
self.class.notify_observers(:before_restore, self) if self.class.respond_to?(:notify_observers)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment