Components/XMPP: Allow multiple recipients for XMPP notification (#16231)

Co-authored-by: Franck Nijhof <frenck@frenck.nl>

Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
Andreas Oetken 2021-02-19 16:27:09 +01:00 committed by GitHub
parent dda6ef637f
commit 69eedb909d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,9 @@ notify:
platform: xmpp platform: xmpp
sender: YOUR_JID sender: YOUR_JID
password: YOUR_JABBER_ACCOUNT_PASSWORD password: YOUR_JABBER_ACCOUNT_PASSWORD
recipient: YOUR_RECIPIENT recipient:
- YOUR_RECIPIENT 1
- YOUR_RECIPIENT 2
``` ```
{% configuration %} {% configuration %}
@ -49,9 +51,9 @@ password:
required: true required: true
type: string type: string
recipient: recipient:
description: The Jabber ID (JID) that will receive the messages. description: The Jabber IDs (JID) that will receive the messages.
required: true required: true
type: string type: [string, list]
tls: tls:
description: Force TLS. description: Force TLS.
required: false required: false