summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorChris <ccbrown112@gmail.com>2017-06-23 15:47:24 -0700
committerCorey Hulen <corey@hulen.com>2017-06-23 15:47:24 -0700
commit4df36a504cebc61fa1e5e6f7980f9245b475facf (patch)
treef6d6d8a6093dc7934cbd0b84be950d1595d9395e /api
parentbf12e7e32cef427edacbd512d067c2bfd35d3b67 (diff)
downloadchat-4df36a504cebc61fa1e5e6f7980f9245b475facf.tar.gz
chat-4df36a504cebc61fa1e5e6f7980f9245b475facf.tar.bz2
chat-4df36a504cebc61fa1e5e6f7980f9245b475facf.zip
PLT-6714: add /settings command (#6716)
* add /settings command * update receiver name
Diffstat (limited to 'api')
-rw-r--r--api/command_settings_test.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/api/command_settings_test.go b/api/command_settings_test.go
new file mode 100644
index 000000000..f34154f39
--- /dev/null
+++ b/api/command_settings_test.go
@@ -0,0 +1,13 @@
+// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package api
+
+import (
+ "testing"
+)
+
+func TestSettingsCommand(t *testing.T) {
+ th := Setup().InitBasic()
+ th.BasicClient.Must(th.BasicClient.Command(th.BasicChannel.Id, "/settings"))
+}