trailsjs / sails-auth

Passport-based User Authentication system for sails.js applications. Designed to work well with the sails-permissions module.
https://www.npmjs.org/package/sails-auth
MIT License
265 stars 141 forks source link

"Remember Me" functionality #164

Closed alexanderpepper closed 7 years ago

alexanderpepper commented 7 years ago

How can I make login persist after the browser is closed or the server is restarted?

Garland220 commented 7 years ago

Look at config/session in your sails app. You need something to store the sessions

alexanderpepper commented 7 years ago

So simple! Thank you.