summaryrefslogtreecommitdiffstats
path: root/model/command.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-10-26 08:47:40 -0400
committerChristopher Speller <crspeller@gmail.com>2015-10-26 08:47:40 -0400
commitf05da1fa6d028bfb15b2838abbb7976c29bff1cd (patch)
treec6eea07242fd8c684de3ecdd775d0679823c9714 /model/command.go
parent34de56ba3bdefcda468ef83e5cd4533c8022b954 (diff)
parentc6bbebbf6f5bc6fd1b4af222e7043cee0dd24f1f (diff)
downloadchat-f05da1fa6d028bfb15b2838abbb7976c29bff1cd.tar.gz
chat-f05da1fa6d028bfb15b2838abbb7976c29bff1cd.tar.bz2
chat-f05da1fa6d028bfb15b2838abbb7976c29bff1cd.zip
Merge pull request #1179 from florianorben/issue-827
Mattermost can not send message start with slash
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 {