Method: ActionDispatch::Http::FilterParameters#filtered_path

Defined in:
lib/action_dispatch/http/filter_parameters.rb

#filtered_pathObject

Reconstructed a path with all sensitive GET parameters replaced.



42
43
44
# File 'lib/action_dispatch/http/filter_parameters.rb', line 42

def filtered_path
  @filtered_path ||= query_string.empty? ? path : "#{path}?#{filtered_query_string}"
end