Possible to reset sessions for all users?

2019-09-01 12:09发布

Due to change in authentication procedure I need to reset all sessions for all users, how do I do this in Rails 4?

1条回答
Animai°情兽
2楼-- · 2019-09-01 12:34

You can change the secret_key your app uses to encrypt cookies in config/initializers/secret_token.rb or you can change the name of the cookie key in config/initializers/session_store.rb either of these changes will invalidate all sessions and require them to be recreated (login again)

查看更多
登录 后发表回答