문제

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?

올바른 솔루션이 없습니다

다른 팁

Typing this in your production console will do it:

User.all.each { |u| u.reset_remember_token! }
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top