This commit is contained in:
Joshua Santos 2017-09-14 08:45:22 +00:00 committed by GitHub
commit 5b27f16310

View File

@ -239,6 +239,9 @@ class EndpointInspector(object):
if path.endswith('.{format}') or path.endswith('.{format}/'): if path.endswith('.{format}') or path.endswith('.{format}/'):
return False # Ignore .json style URLs. return False # Ignore .json style URLs.
if path.endswith('.*'):
return False # Ignore wildcard URLs.
return True return True
def get_allowed_methods(self, callback): def get_allowed_methods(self, callback):