HTTP: Fix DELETE requests
This commit is contained in:
parent
275eb917aa
commit
393dd5dae7
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue