Skip to content

Commit

Permalink
Added HEAD method to HTTP methods in route
Browse files Browse the repository at this point in the history
  • Loading branch information
bucha committed Nov 8, 2018
1 parent 1837162 commit c842a4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kong-schemas.js
Original file line number Diff line number Diff line change
Expand Up @@ -1809,7 +1809,7 @@ var schemas = {
type: 'array',
items: {
type: 'string',
enum: ['GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'OPTIONS'],
enum: ['HEAD', 'GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'OPTIONS'],
},
description: "A list of HTTP methods that match this Route. At least one of hosts, paths, or methods must be set."
},
Expand Down

0 comments on commit c842a4f

Please sign in to comment.