@ -55,6 +55,8 @@ namespace Squidex.Extensions.Actions.Webhook
{
POST,
PUT,
GET
GET,
DELETE,
PATCH
}
@ -105,6 +105,12 @@ namespace Squidex.Extensions.Actions.Webhook
case WebhookMethod.GET:
method = HttpMethod.Get;
break;
case WebhookMethod.DELETE:
method = HttpMethod.Delete;
case WebhookMethod.PATCH:
method = HttpMethod.Patch;
var request = new HttpRequestMessage(method, job.RequestUrl);