I’m using Devise with Rails3 for authentication, however due to the nature of the app the IP of the client changes. How do I stop Devise requiring the users session to be on a single IP. Obviously the cookie is persisting when the IP changes.
Thanks a lot
I assume that you have
:rememberablein your devise options some thing like:And in your migration you have something like this:
Again the emphases is on rememberable for the model and migration.
Docs are here.