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; return this.post;
case 'PUT': case 'PUT':
return this.put; return this.put;
case 'DEL': case 'DELETE':
return this.del; return this.del;
default: default:
return; return;