Remove wildcard from api endpoint documentation

This commit is contained in:
Josh Santos 2017-07-24 09:13:42 -04:00
parent 3eade5abeb
commit dfc67e66fb

View File

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