From 3aaa1451057efcb9b7b962f02aa9931217b70b08 Mon Sep 17 00:00:00 2001 From: Edward Drapkin Date: Mon, 8 Oct 2018 13:40:27 -0400 Subject: [PATCH] Add list as an http verb --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index add014e..d55517b 100644 --- a/src/index.js +++ b/src/index.js @@ -4,7 +4,7 @@ var deepEqual = require('deep-equal'); var handleRequest = require('./handle_request'); -var VERBS = ['get', 'post', 'head', 'delete', 'patch', 'put', 'options']; +var VERBS = ['get', 'post', 'head', 'delete', 'patch', 'put', 'options', 'list']; function adapter() { return function(config) {