PLT-6714: add /settings command (#6716)

* add /settings command

* update receiver name
Этот коммит содержится в:
Chris
2017-06-23 15:47:24 -07:00
коммит произвёл Corey Hulen
родитель bf12e7e32c
Коммит 4df36a504c
11 изменённых файлов: 131 добавлений и 40 удалений

13
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"))
}