fix(cors): add missing verbs

This commit is contained in:
Romain Lanz 2018-09-04 20:33:39 +02:00
parent 11db440607
commit 489897c488
No known key found for this signature in database
GPG Key ID: 6C8EB7B74301AB6B

View File

@ -29,7 +29,7 @@ module.exports = {
| Array - An array of allowed methods
|
*/
methods: ['GET', 'PUT', 'POST'],
methods: ['GET', 'PUT', 'PATCH', 'POST', 'DELETE'],
/*
|--------------------------------------------------------------------------