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 3 samples from 1 application.

request.fullpath # => "/articles?page=2"
# 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