summaryrefslogtreecommitdiffstats
path: root/api/command.go
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-06-15 11:22:53 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-06-15 11:22:53 -0700
commit0cd93cf2da14a4e058eef06a0a0c1770e2fe3ab7 (patch)
tree3f86c6872aa94ee0530f8a6d2b7458fa655c11de /api/command.go
parentb7a821c3410ecd165241e2dbcf2c8376ae402124 (diff)
parent6f10c401a422170d42d9cee8ec01b94808fa338f (diff)
downloadchat-0cd93cf2da14a4e058eef06a0a0c1770e2fe3ab7.tar.gz
chat-0cd93cf2da14a4e058eef06a0a0c1770e2fe3ab7.tar.bz2
chat-0cd93cf2da14a4e058eef06a0a0c1770e2fe3ab7.zip
Merge pull request #1 from mattermost/master
to me
Diffstat (limited to 'api/command.go')
-rw-r--r--api/command.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/api/command.go b/api/command.go
index 9efc79b49..449483bbf 100644
--- a/api/command.go
+++ b/api/command.go
@@ -19,12 +19,16 @@ var commands = []commandHandler{
logoutCommand,
joinCommand,
loadTestCommand,
- echoCommand,
}
func InitCommand(r *mux.Router) {
l4g.Debug("Initializing command api routes")
r.Handle("/command", ApiUserRequired(command)).Methods("POST")
+
+ if utils.Cfg.TeamSettings.AllowValet {
+ commands = append(commands, echoCommand)
+ }
+
hub.Start()
}