Last active
December 17, 2015 09:39
-
-
Save slamotte/5589389 to your computer and use it in GitHub Desktop.
Monkey patch ActiveRecord::SessionStore::Session to work with the permanent_records gem
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The loaded? method doesn't factor in permanent_record's deleted_at column, so let it. Otherwise we can't log in! | |
module ActiveRecord | |
class SessionStore | |
class Session | |
def loaded_with_permanent_record? | |
loaded_without_permanent_record? || respond_to?(:deleted_at) && deleted_at.present? | |
end | |
alias_method_chain :loaded?, :permanent_record | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment