8 lines
272 B
Ruby
8 lines
272 B
Ruby
# Be sure to restart your server when you modify this file.
|
|
|
|
if Rails.env == 'production' || Rails.env == 'preview'
|
|
BikeBike::Application.config.session_store :active_record_store, :domain => :all
|
|
else
|
|
BikeBike::Application.config.session_store :active_record_store
|
|
end
|