CIA-Homebrew / BJCP-Scoresheet

Digital form of BJCP scoresheet for beer judging.
GNU General Public License v3.0
8 stars 5 forks source link

Switch from runtime sessions to db managed sessions #131

Closed prphntm63 closed 3 years ago

prphntm63 commented 3 years ago

connect.session() is a runtime session manager. If the application crashes or the dyno restarts, all users will be logged out. Any users currently filling scoresheets may lose their data.

Switch to managing sessions through connect-session-sequelize to implement persistent sessions.