Add ability to create an Outgoing Webhook with the PATCH HTTP method via the UI (#3604)

# What this PR does

Closes https://github.com/grafana/oncall/issues/3564

## TODO
- [ ] add e2e tests for creating Outgoing Webhooks

## Checklist

- [ ] Unit, integration, and e2e (if applicable) tests updated
- [x] Documentation added (or `pr:no public docs` PR label added if not
required)
- [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not
required)
This commit is contained in:
Joey Orlando 2024-01-02 13:04:06 -05:00 committed by GitHub
parent 1fccef65fd
commit 44ec718d7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View file

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased ## 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 ### Changed
- Handle message to reply to not found in Telegram send log ([#3587](https://github.com/grafana/oncall/pull/3587)) - Handle message to reply to not found in Telegram send log ([#3587](https://github.com/grafana/oncall/pull/3587))

View file

@ -122,6 +122,10 @@ export function createForm(
value: 'PUT', value: 'PUT',
label: 'PUT', label: 'PUT',
}, },
{
value: 'PATCH',
label: 'PATCH',
},
{ {
value: 'DELETE', value: 'DELETE',
label: 'DELETE', label: 'DELETE',