trabajo-afectivo/db/migrate/20190718140450_forget_insecure_sessions.rb

13 lines
469 B
Ruby
Raw Normal View History

# This migration removes all pre-existing user sessions
# so that they can be replaced with sessions that use "secure cookies".
# It is skipped on non-HTTPS deployments
# because those are incompatible with secure cookies anyway.
class ForgetInsecureSessions < ActiveRecord::Migration[5.2]
def up
return if !Setting.exists?(name: 'system_init_done')
return if Setting.get('http_type') != 'https'
ActiveRecord::SessionStore::Session.destroy_all
end
end