summaryrefslogtreecommitdiffstats
path: root/gateway
diff options
context:
space:
mode:
authorQais Patankar <qaisjp@gmail.com>2019-10-03 23:18:56 +0100
committerWim <wim@42.be>2019-10-04 00:18:56 +0200
commitba6759010bc3c1c6b2793b3fdf92f8dadf481117 (patch)
tree8d04845d26ae6736bb04d167fecce80c74872569 /gateway
parentda3868c104f9e044b97c86c93a88843b7d8d4ead (diff)
downloadmatterbridge-msglm-ba6759010bc3c1c6b2793b3fdf92f8dadf481117.tar.gz
matterbridge-msglm-ba6759010bc3c1c6b2793b3fdf92f8dadf481117.tar.bz2
matterbridge-msglm-ba6759010bc3c1c6b2793b3fdf92f8dadf481117.zip
Add UserTypingSupport (discord) (#914)
* Add Discord to UserTypingSupport * discord: start typing in a channel on EventUserTyping receive * discord: emit EventUserTyping to gateway
Diffstat (limited to 'gateway')
-rw-r--r--gateway/bridgemap/bridgemap.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/gateway/bridgemap/bridgemap.go b/gateway/bridgemap/bridgemap.go
index 599df7b2..cb9a3932 100644
--- a/gateway/bridgemap/bridgemap.go
+++ b/gateway/bridgemap/bridgemap.go
@@ -40,6 +40,7 @@ var (
}
UserTypingSupport = map[string]struct{}{
- "slack": {},
+ "slack": {},
+ "discord": {},
}
)