HTTP: Fix DELETE requests

This commit is contained in:
Steven Bower 2017-02-20 17:36:28 -08:00
parent 275eb917aa
commit 393dd5dae7

View File

@ -739,7 +739,7 @@ Routes.prototype.getHandlers = function getHandlers(method) {
return this.post;
case 'PUT':
return this.put;
case 'DEL':
case 'DELETE':
return this.del;
default:
return;