aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2012-08-24 14:11:45 -0700
committerJosé Valim <jose.valim@plataformatec.com.br>2012-08-24 14:11:45 -0700
commit73c02220f83cfb181ccf99db0451983324e28804 (patch)
tree2dedca55093b5d975903c09ff8738f1a0bd1be46 /actionpack/lib/action_controller
parent2c571b3f0544a6457db4818e752f4cd4bacd48b4 (diff)
parent1807384c96c553af780e98d25ab4750389233f77 (diff)
downloadrails-73c02220f83cfb181ccf99db0451983324e28804.tar.gz
rails-73c02220f83cfb181ccf99db0451983324e28804.tar.bz2
rails-73c02220f83cfb181ccf99db0451983324e28804.zip
Merge pull request #7436 from sikachu/master-remove-active_record-session_store
Extract ActiveRecord::SessionStore from Rails
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/base.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index 71425cd542..f829f5e8a2 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -88,15 +88,6 @@ module ActionController
#
# Do not put secret information in cookie-based sessions!
#
- # Other options for session storage:
- #
- # * ActiveRecord::SessionStore - Sessions are stored in your database, which works better than PStore with multiple app servers and,
- # unlike CookieStore, hides your session contents from the user. To use ActiveRecord::SessionStore, set
- #
- # MyApplication::Application.config.session_store :active_record_store
- #
- # in your <tt>config/initializers/session_store.rb</tt> and run <tt>script/rails g session_migration</tt>.
- #
# == Responses
#
# Each action results in a response, which holds the headers and document to be sent to the user's browser. The actual response