aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/middlewares.rb
blob: fd70eca1b1ca7a4abe797508493b082d9289cbc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
use "Rack::Lock", :if => lambda {
  !ActionController::Base.allow_concurrency
}

use "ActionController::Failsafe"

use lambda { ActionController::Base.session_store },
  ActionController::Base.session_options

use "ActionController::RewindableInput"
use "ActionController::ParamsParser"
use "Rack::MethodOverride"
use "Rack::Head"