instance method
build_request
Ruby on Rails 5.2.8.1
Since v5.2.8.1 Private — implementation detail, not part of the public APISignature
build_request(env)
No documentation comment.
Parameters
-
envreq
Source
# File railties/lib/rails/application.rb, line 607
def build_request(env)
req = super
env["ORIGINAL_FULLPATH"] = req.fullpath
env["ORIGINAL_SCRIPT_NAME"] = req.script_name
req
end
Defined in railties/lib/rails/application.rb line 607
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Application