feat(HTTP Request Node): Add support for OPTIONS method (#3030)

This commit is contained in:
TheFSilver 2022-03-25 22:55:43 +01:00 committed by GitHub
parent 9cbb745e21
commit bd9064cd0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -161,6 +161,10 @@ export class HttpRequest implements INodeType {
name: 'HEAD',
value: 'HEAD',
},
{
name: 'OPTIONS',
value: 'OPTIONS',
},
{
name: 'PATCH',
value: 'PATCH',