class ActionDispatch::Request

def original_url

Experimental RBS support (using type sampling data from the type_fusion project).

def original_url: () -> String

This signature was generated using 4 samples from 1 application.

request.original_url # => "http://www.example.com/articles?page=2"
# get "/articles?page=2"

Returns the original request URL as a +String+.
def original_url
  base_url + original_fullpath
end