Skip to content

Commit

Permalink
feat(HTTP Request Node): Add support for OPTIONS method (#3030)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFSilver committed Mar 25, 2022
1 parent 9cbb745 commit bd9064c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/nodes-base/nodes/HttpRequest/HttpRequest.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@ export class HttpRequest implements INodeType {
name: 'HEAD',
value: 'HEAD',
},
{
name: 'OPTIONS',
value: 'OPTIONS',
},
{
name: 'PATCH',
value: 'PATCH',
Expand Down

0 comments on commit bd9064c

Please sign in to comment.