summaryrefslogtreecommitdiffstats
path: root/api/command_shortcuts.go
diff options
context:
space:
mode:
authorDavid Lu <david.lu@hotmail.com>2016-05-19 07:35:12 -0400
committerJoram Wilander <jwawilander@gmail.com>2016-05-19 07:35:12 -0400
commit5ace856e72b23920d9448d4eb11e0bc4ccbf11f0 (patch)
treee778c1d107c7c55eb3368ffef6e76d3aa2714c27 /api/command_shortcuts.go
parent4f34730b3f82ee3fc1a21f3f2bf7ee5a5f8f3c0a (diff)
downloadchat-5ace856e72b23920d9448d4eb11e0bc4ccbf11f0.tar.gz
chat-5ace856e72b23920d9448d4eb11e0bc4ccbf11f0.tar.bz2
chat-5ace856e72b23920d9448d4eb11e0bc4ccbf11f0.zip
Added /shortcuts (#3048)
Added message and tests Remember that lower vs uppercase matters Accidentally removed \n Added more Formatted
Diffstat (limited to 'api/command_shortcuts.go')
-rw-r--r--api/command_shortcuts.go37
1 files changed, 37 insertions, 0 deletions
diff --git a/api/command_shortcuts.go b/api/command_shortcuts.go
new file mode 100644
index 000000000..77f9f4441
--- /dev/null
+++ b/api/command_shortcuts.go
@@ -0,0 +1,37 @@
+// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package api
+
+import (
+ "github.com/mattermost/platform/model"
+)
+
+type ShortcutsProvider struct {
+}
+
+const (
+ CMD_SHORTCUTS = "shortcuts"
+)
+
+func init() {
+ RegisterCommandProvider(&ShortcutsProvider{})
+}
+
+func (me *ShortcutsProvider) GetTrigger() string {
+ return CMD_SHORTCUTS
+}
+
+func (me *ShortcutsProvider) GetCommand(c *Context) *model.Command {
+ return &model.Command{
+ Trigger: CMD_SHORTCUTS,
+ AutoComplete: true,
+ AutoCompleteDesc: c.T("api.command_shortcuts.desc"),
+ AutoCompleteHint: "",
+ DisplayName: c.T("api.command_shortcuts.name"),
+ }
+}
+
+func (me *ShortcutsProvider) DoCommand(c *Context, channelId string, message string) *model.CommandResponse {
+ return &model.CommandResponse{ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: c.T("api.command_shortcuts.list")}
+}