1

We have an update coming for which we need all users to sign out and sign in again.

I've tried changing the key in session_store.rb but that doesn't work. We are using Clearance for authentication, so was wondering if there is a way to end all current sessions with clearance forcing everyone to sign-in again?

4

1 回答 1

1

在您的生产控制台中键入此内容即可:

User.all.each { |u| u.reset_remember_token! }
于 2013-08-22T00:17:11.890 回答