diff --git a/CHANGELOG.md b/CHANGELOG.md index 0536ab49..b23b8560 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Added + +- Add ability to create an Outgoing Webhook with the PATCH HTTP method via the UI by @joeyorlando ([#3604](https://github.com/grafana/oncall/pull/3604)) + ### Changed - Handle message to reply to not found in Telegram send log ([#3587](https://github.com/grafana/oncall/pull/3587)) diff --git a/grafana-plugin/src/containers/OutgoingWebhookForm/OutgoingWebhookForm.config.tsx b/grafana-plugin/src/containers/OutgoingWebhookForm/OutgoingWebhookForm.config.tsx index c3d7bb25..d421c748 100644 --- a/grafana-plugin/src/containers/OutgoingWebhookForm/OutgoingWebhookForm.config.tsx +++ b/grafana-plugin/src/containers/OutgoingWebhookForm/OutgoingWebhookForm.config.tsx @@ -122,6 +122,10 @@ export function createForm( value: 'PUT', label: 'PUT', }, + { + value: 'PATCH', + label: 'PATCH', + }, { value: 'DELETE', label: 'DELETE',