Browse Source

Return HTTP status 405 instead of 500 + stacktrace + email.

pitchum 6 years ago
parent
commit
ab7eccdabc
1 changed files with 2 additions and 0 deletions
  1. 2 0
      ffdnispdb/views_api.py

+ 2 - 0
ffdnispdb/views_api.py

@@ -112,6 +112,8 @@ class Resource(MethodView, REST):
 
     def dispatch_request(self, *args, **kwargs):
         meth = getattr(self, request.method.lower(), None)
+        if not meth:
+            return self.negociated_resp(None, 405, None) # 405 Method not allowed
         resp = meth(*args, **kwargs)
         if isinstance(resp, Response):
             return resp