diff options
author | Qais Patankar <qaisjp@gmail.com> | 2020-12-17 19:27:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 20:27:52 +0100 |
commit | 6de4c7e97196c738466d318dd2c45ec03ad05762 (patch) | |
tree | 7b0b7e57634e55cc59e43f72d6d3ac030fd360dd | |
parent | 03dc51ffa2c07c3bb35e834971650bbf1110e88e (diff) | |
download | matterbridge-msglm-6de4c7e97196c738466d318dd2c45ec03ad05762.tar.gz matterbridge-msglm-6de4c7e97196c738466d318dd2c45ec03ad05762.tar.bz2 matterbridge-msglm-6de4c7e97196c738466d318dd2c45ec03ad05762.zip |
Update webhook documentation (discord) (#1335)
-rw-r--r-- | bridge/discord/discord.go | 5 | ||||
-rw-r--r-- | matterbridge.toml.sample | 18 |
2 files changed, 11 insertions, 12 deletions
diff --git a/bridge/discord/discord.go b/bridge/discord/discord.go index 07e4f776..d63006a7 100644 --- a/bridge/discord/discord.go +++ b/bridge/discord/discord.go @@ -54,11 +54,6 @@ func (b *Bdiscord) Connect() error { var err error token := b.GetString("Token") b.Log.Info("Connecting") - if b.GetString("WebhookURL") == "" { - b.Log.Info("Connecting using token") - } else { - b.Log.Info("Connecting using webhookurl (for posting) and token") - } if !strings.HasPrefix(b.GetString("Token"), "Bot ") { token = "Bot " + b.GetString("Token") } diff --git a/matterbridge.toml.sample b/matterbridge.toml.sample index dd8cfb48..9749080f 100644 --- a/matterbridge.toml.sample +++ b/matterbridge.toml.sample @@ -846,10 +846,11 @@ UseUserName=false # UseDiscriminator appends the `#xxxx` discriminator when used with UseUserName UseDiscriminator=false -# WebhookURL sends messages in the style of puppets. -# This only works if you have one discord channel, if you have multiple discord channels you'll have to specify it in the gateway config -# Example: "https://discordapp.com/api/webhooks/1234/abcd_xyzw" -WebhookURL="" +# AutoWebhooks automatically configures message sending in the style of puppets. +# This is an easier alternative to manually configuring "WebhookURL" for each gateway, +# as turning this on will automatically load or create webhooks for each channel. +# This feature requires the "Manage Webhooks" permission (either globally or as per-channel). +AutoWebhooks=false # EditDisable disables sending of edits to other bridges EditDisable=false @@ -1435,7 +1436,7 @@ Server = "mumble.yourdomain.me:64738" # Nickname to log in as Nick = "matterbridge" -# Some servers require a password +# Some servers require a password # OPTIONAL (default empty) Password = "serverpasswordhere" @@ -1863,13 +1864,16 @@ enable=true #OPTIONAL - your irc / xmpp channel key key="yourkey" + # Discord specific gateway options [[gateway.inout]] account="discord.game" channel="mygreatgame" - #OPTIONAL - webhookurl only works for discord (it needs a different URL for each cahnnel) [gateway.inout.options] - webhookurl="https://discordapp.com/api/webhooks/123456789123456789/C9WPqExYWONPDZabcdef-def1434FGFjstasJX9pYht73y" + # WebhookURL sends messages in the style of "puppets". You must configure a webhook URL for each channel you want to bridge. + # If you have more than one channel and don't wnat to configure each channel manually, see the "AutoWebhooks" option in the gateway config. + # Example: "https://discord.com/api/webhooks/1234/abcd_xyzw" + WebhookURL="" [[gateway.inout]] account="zulip.streamchat" |