diff options
author | Sacha Aury - Wolfman <sacha.aury@gmail.com> | 2017-06-26 20:07:27 +0200 |
---|---|---|
committer | Wim <wim@42.be> | 2017-06-26 20:07:27 +0200 |
commit | c17512b7ab759ab0fba0ecc8be20ff829946bb24 (patch) | |
tree | 287e012a2b6c95adb0a9cb36edc0e9e1213befea /matterbridge.toml.sample | |
parent | 1b837b3dc7579351a6018b52b58613c446ce08a5 (diff) | |
download | matterbridge-msglm-c17512b7ab759ab0fba0ecc8be20ff829946bb24.tar.gz matterbridge-msglm-c17512b7ab759ab0fba0ecc8be20ff829946bb24.tar.bz2 matterbridge-msglm-c17512b7ab759ab0fba0ecc8be20ff829946bb24.zip |
Add webhook posting mode for discord. (#204)
Using it implies to configure a Webhook on discord and set the parameter :
- WebhookURL (New parameter, discord-specific)
Discord API does not allow to change the name of the user posting, but webhooks does.
This makes the relay much more elegant, even if we might lose some more advanced features.
Signed-off-by: saury07 <sacha.aury@gmail.com>
Diffstat (limited to 'matterbridge.toml.sample')
-rw-r--r-- | matterbridge.toml.sample | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample index 53a584aa..a5c523bf 100644 --- a/matterbridge.toml.sample +++ b/matterbridge.toml.sample @@ -454,6 +454,10 @@ Server="yourservername" #OPTIONAL (default false) ShowEmbeds=false +#Specify WebhookURL. If given, will relay messages using the Webhook, which gives a better look to messages. +#OPTIONAL (default empty) +WebhookURL="Yourwebhooktokenhere" + #Disable sending of edits to other bridges #OPTIONAL (default false) EditDisable=false |