mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-13 00:07:13 +00:00
Multiple webhooks should be expressed as a list (#2292)
This commit is contained in:
parent
85c3012fa1
commit
cd2b5dd51e
2 changed files with 16 additions and 1 deletions
2
.github/.wordlist.txt
vendored
2
.github/.wordlist.txt
vendored
|
@ -201,6 +201,8 @@ MyAnimeList's
|
|||
MyCollections
|
||||
MyOverlays
|
||||
MyPlaylists
|
||||
myotherdomain
|
||||
myspecialdomain
|
||||
mza
|
||||
namespace
|
||||
NAS
|
||||
|
|
|
@ -26,7 +26,20 @@ webhooks:
|
|||
| [`delete`](#delete-notifications) | :fontawesome-solid-circle-check:{ .green } | :fontawesome-solid-circle-xmark:{ .red } | :fontawesome-solid-circle-xmark:{ .red } |
|
||||
| [`changes`](#changes-notifications) | :fontawesome-solid-circle-check:{ .green } | :fontawesome-solid-circle-check:{ .green } | :fontawesome-solid-circle-check:{ .green } |
|
||||
|
||||
* Each Attribute can be either a webhook url as a string or a comma-separated list of webhooks urls.
|
||||
* Each Attribute can be either a webhook url as a string or a list of webhooks urls.
|
||||
```yaml
|
||||
webhooks:
|
||||
error: https://www.myspecialdomain.com/kometa
|
||||
version: notifiarr
|
||||
run_start:
|
||||
- notifiarr
|
||||
- gotify
|
||||
run_end:
|
||||
- https://www.myspecialdomain.com/kometa
|
||||
- https://www.myotherdomain.com/kometa
|
||||
...
|
||||
```
|
||||
|
||||
* To send notifications to [Notifiarr](notifiarr.md) just add `notifiarr` to a webhook instead of the webhook url.
|
||||
* To send notifications to [Gotify](gotify.md) just add `gotify` to a webhook instead of the webhook url.
|
||||
|
||||
|
|
Loading…
Reference in a new issue