I would like authogic to never set a user_credentials
cookie, and only use the standard Rails session cookie.
I see Session
is included in Authlogic::Session::Session::Base
after Cookies
. If I log into my app and then delete the user_credentials
cookie, I still stay logged in. So apparently authlogic is storing the credentials in both places and checking both places? Or ignoring the cookie but still setting it? How can I have it never set or reference the user_credentials
cookie?