Merge pull request #135 from BluSyn/master

HTTP: Fix DELETE requests
This commit is contained in:
Christopher Jeffrey (JJ) 2017-02-21 00:36:33 -08:00 committed by GitHub
commit cef85d7294

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;