summaryrefslogtreecommitdiffstats
path: root/app/command_shortcuts.go
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-06-03 00:11:03 +0800
committerChristopher Speller <crspeller@gmail.com>2017-06-02 09:11:03 -0700
commitf1b317a51fcadfd5feab9e4c496195e0cacba8c9 (patch)
treecb789b68cc5a09a41d03131c56dd44a3ec3a6098 /app/command_shortcuts.go
parent6a54f3c4890135ea925365e59628afbb58ff6f87 (diff)
downloadchat-f1b317a51fcadfd5feab9e4c496195e0cacba8c9.tar.gz
chat-f1b317a51fcadfd5feab9e4c496195e0cacba8c9.tar.bz2
chat-f1b317a51fcadfd5feab9e4c496195e0cacba8c9.zip
add shortcut that opens a comment thread for most recent message in a channel (#6549)
Diffstat (limited to 'app/command_shortcuts.go')
-rw-r--r--app/command_shortcuts.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/command_shortcuts.go b/app/command_shortcuts.go
index e3c342af1..da3537961 100644
--- a/app/command_shortcuts.go
+++ b/app/command_shortcuts.go
@@ -37,7 +37,7 @@ func (me *ShortcutsProvider) GetCommand(T goi18n.TranslateFunc) *model.Command {
}
func (me *ShortcutsProvider) DoCommand(args *model.CommandArgs, message string) *model.CommandResponse {
- shortcutIds := [28]string{
+ shortcutIds := [29]string{
"api.command_shortcuts.header",
// Nav shortcuts
"api.command_shortcuts.nav.header",
@@ -58,6 +58,7 @@ func (me *ShortcutsProvider) DoCommand(args *model.CommandArgs, message string)
"api.command_shortcuts.msgs.reprint_prev",
"api.command_shortcuts.msgs.reprint_next",
"api.command_shortcuts.msgs.edit",
+ "api.command_shortcuts.msgs.reply",
"api.command_shortcuts.msgs.comp_username",
"api.command_shortcuts.msgs.comp_channel",
"api.command_shortcuts.msgs.comp_emoji",