I think this is all you have to do to enable "remember me" for a particular user:
session.auth.expiration = auth.settings.long_expiration session.auth.remember = True So, if you add a "remember me" checkbox to the login form, just check whether it is selected, and if so, run the above two lines. Anthony On Friday, September 28, 2012 12:10:10 AM UTC-4, Dave wrote: > > Is there an easy way to allow "remember me" functionality with anything > but the standard Auth()? I am nearly finished writing my own open > authentication class for a project I am working on. I dont see this > functionality in the baked Janrain / RPX class either though. > > Im trying to figure out if there is an easy way to do this or if I need to > duplicate some of the Auth() 'remember me' functionality in my own class? > > Thanks > --

