|
@@ -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
|