class ActionDispatch::Request
def fullpath
Experimental RBS support (using type sampling data from the type_fusion
project).
def fullpath: () -> String
This signature was generated using 1 sample from 1 application.
# get "/articles?page=2"
request.fullpath # => "/articles"
# get "/articles"
Returns the +String+ full path including params of the last URL requested.
def fullpath @fullpath ||= super end