Remove bad example with array for method (#7972)

Signed-off-by: Derrick Mehaffy <derrickmehaffy@gmail.com>
This commit is contained in:
DMehaffy 2020-09-21 07:53:23 -07:00 committed by GitHub
parent a3a77b417c
commit 42ceba9d88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,9 +24,9 @@ You have to edit the `routes.json` file in one of your APIs folders (`./api/**/c
}
},
{
"method": ["POST", "PUT"],
"path": "/restaurants/:id",
"handler": "Restaurant.createOrUpdate",
"method": "PUT",
"path": "/restaurants/bulkUpdate",
"handler": "Restaurant.bulkUpdate",
"config": {
"policies": []
}