Skip to content

Instantly share code, notes, and snippets.

@slamotte
Last active December 17, 2015 09:39
Show Gist options
  • Save slamotte/5589389 to your computer and use it in GitHub Desktop.
Save slamotte/5589389 to your computer and use it in GitHub Desktop.
Monkey patch ActiveRecord::SessionStore::Session to work with the permanent_records gem
# 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