summaryrefslogtreecommitdiffstats
path: root/model/command.go
diff options
context:
space:
mode:
authorFlorian Orben <florian.orben@gmail.com>2015-10-25 23:55:50 +0100
committerFlorian Orben <florian.orben@gmail.com>2015-10-25 23:55:50 +0100
commitc6bbebbf6f5bc6fd1b4af222e7043cee0dd24f1f (patch)
treec3db257e304959dc5e466b140ae6c967f58b4425 /model/command.go
parentdc439fd7e84d54a95f6c0ac2b51a21e634777436 (diff)
downloadchat-c6bbebbf6f5bc6fd1b4af222e7043cee0dd24f1f.tar.gz
chat-c6bbebbf6f5bc6fd1b4af222e7043cee0dd24f1f.tar.bz2
chat-c6bbebbf6f5bc6fd1b4af222e7043cee0dd24f1f.zip
Mattermost can not send message start with slash
resolves #827
Diffstat (limited to 'model/command.go')
-rw-r--r--model/command.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/model/command.go b/model/command.go
index 2b26aad1c..5aec5f534 100644
--- a/model/command.go
+++ b/model/command.go
@@ -9,7 +9,8 @@ import (
)
const (
- RESP_EXECUTED = "executed"
+ RESP_EXECUTED = "executed"
+ RESP_NOT_IMPLEMENTED = "not implemented"
)
type Command struct {