From 46a5fbadba0b9b4aa924e8d5f772fb711a724213 Mon Sep 17 00:00:00 2001 From: Chetanya Kandhari Date: Wed, 5 Feb 2020 22:40:17 +0530 Subject: [PATCH] Update invalid command message --- server/command/command.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/command/command.go b/server/command/command.go index 1cbce74..a6d2ba0 100644 --- a/server/command/command.go +++ b/server/command/command.go @@ -50,11 +50,10 @@ func GetCommand() *model.Command { } } -// TODO : Show help text instead of invalid command. func executeConfluenceDefault(context *model.CommandArgs, args ...string) *model.CommandResponse { return &model.CommandResponse{ ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, - Text: "Invalid command", + Text: "Invalid command parameters. Please use `/confluence help` for more information.", } }