diff options
author | Piotr Sarnacki <drogus@gmail.com> | 2011-12-20 20:34:04 +0100 |
---|---|---|
committer | Piotr Sarnacki <drogus@gmail.com> | 2011-12-21 00:02:57 +0100 |
commit | 80ab9e2a7434a445eaacb097832fbad24ed01960 (patch) | |
tree | 8f31acc373a9fca6ef7a75e943f3989f9405e17c /actionpack/lib | |
parent | 482ec2ac3f518c91544a3b3e92765eef41b91419 (diff) | |
download | rails-80ab9e2a7434a445eaacb097832fbad24ed01960.tar.gz rails-80ab9e2a7434a445eaacb097832fbad24ed01960.tar.bz2 rails-80ab9e2a7434a445eaacb097832fbad24ed01960.zip |
Add original_fullpath and original_url methods to Request
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/http/request.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/actionpack/lib/action_dispatch/http/request.rb b/actionpack/lib/action_dispatch/http/request.rb index c5c48ec489..820921252d 100644 --- a/actionpack/lib/action_dispatch/http/request.rb +++ b/actionpack/lib/action_dispatch/http/request.rb @@ -122,10 +122,18 @@ module ActionDispatch Http::Headers.new(@env) end + def original_fullpath + @original_fullpath ||= (env["ORIGINAL_FULLPATH"] || fullpath) + end + def fullpath @fullpath ||= super end + def original_url + base_url + original_fullpath + end + def media_type content_mime_type.to_s end |