Hello,
I'm using Authlogic to manage the sessions in my application.
However, by default, authlogic allows a user to be logged in many times from different computers.
I don't want that (the user pays to get access and I want to avoid users sharing their accounts).
Looking in the Authlogic documentation, I've found about the perishable_token
. But when trying to implement it, I just get an error saying the persistence_token
is required (when it shouldn't be as I use the perishable one).
How would you do this using the Authlogic's features ?
Thanks :)