Method: Dox::Entities::Example#request_fullpath

Defined in:
lib/dox/entities/example.rb

#request_fullpathObject

Rails 4 includes the body params in the request_fullpath



48
49
50
51
52
53
54
# File 'lib/dox/entities/example.rb', line 48

def request_fullpath
  if request.query_parameters.present?
    "#{request_path}?#{request_url_query_parameters}"
  else
    request_path
  end
end