X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f07819d81a7437e58c6e64c2e76ba7e54fad9034..b83af6ef2c965dc619a19ace24a5d2275ad89958:/config/initializers/session_store.rb diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb index 77fd39092..a9afad2d6 100644 --- a/config/initializers/session_store.rb +++ b/config/initializers/session_store.rb @@ -1,17 +1,8 @@ # Be sure to restart your server when you modify this file. -# Your secret key for verifying cookie session data integrity. -# If you change this key, all old sessions will become invalid! -# Make sure the secret is at least 30 characters and all random, -# no regular words or you'll be exposed to dictionary attacks. -ActionController::Base.session = { - :key => '_osm_session', - :secret => 'd886369b1e709c61d1f9fcb07384a2b96373c83c01bfc98c6611a9fe2b6d0b14215bb360a0154265cccadde5489513f2f9b8d9e7b384a11924f772d2872c2a1f' -} - -# Use the database for sessions instead of the cookie-based default, -# which shouldn't be used to store highly confidential information -# (create the session table with "rake db:sessions:create") -unless STATUS == :database_offline or STATUS == :database_readonly - ActionController::Base.session_store = :sql_session_store +if STATUS == :database_offline or STATUS == :database_readonly + OpenStreetMap::Application.config.session_store :cookie_store, :key => '_osm_session' +else + ActiveRecord::SessionStore.session_class = ActiveRecord::SessionStore::SqlBypass + OpenStreetMap::Application.config.session_store :active_record_store, :key => '_osm_session' end