is anyone able to explain to me how Acts As Authenticated uses cookies
vs sessions? I need to know for the Privacy terms for our site. Ie; what
parameters will prevent cookies from being used?
Thanks
it uses standard rails sessions, and an optional remember_me cookie if
you want. Rails sessions are kept on the client side through another
cookie, usually __session_id or something.
Why not visit your app and view what cookies it’s using in your web
browser? Firefox has a decent cookie/privacy section.