mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
feat(HTTP Request Node): Add support for OPTIONS method (#3030)
This commit is contained in:
parent
9cbb745e21
commit
bd9064cd0e
|
@ -161,6 +161,10 @@ export class HttpRequest implements INodeType {
|
||||||
name: 'HEAD',
|
name: 'HEAD',
|
||||||
value: 'HEAD',
|
value: 'HEAD',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'OPTIONS',
|
||||||
|
value: 'OPTIONS',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'PATCH',
|
name: 'PATCH',
|
||||||
value: 'PATCH',
|
value: 'PATCH',
|
||||||
|
|
Loading…
Reference in a new issue