aboutsummaryrefslogtreecommitdiff
path: root/connector/mattermost/mattermost.go
diff options
context:
space:
mode:
Diffstat (limited to 'connector/mattermost/mattermost.go')
-rw-r--r--connector/mattermost/mattermost.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/connector/mattermost/mattermost.go b/connector/mattermost/mattermost.go
index 9410126..4490f2a 100644
--- a/connector/mattermost/mattermost.go
+++ b/connector/mattermost/mattermost.go
@@ -253,6 +253,11 @@ func (mm *Mattermost) Leave(roomId RoomID) {
// Not supported? TODO
}
+func (mm *Mattermost) SearchForUsers(query string) ([]UserSearchResult, error) {
+ // TODO
+ return nil, fmt.Errorf("Not implemented")
+}
+
func (mm *Mattermost) Send(event *Event) (string, error) {
post := &model.Post{
Message: event.Text,