We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1476fe2 commit 458bb61Copy full SHA for 458bb61
1 file changed
lib/plugins/standup/standup.go
@@ -56,12 +56,24 @@ func init() {
56
"",
57
shareStandupNotesRequest,
58
)
59
+ // bot.RegisterPassiveCommand("standup", log)
60
+ bot.RegisterCommand(
61
+ "solicit",
62
+ "Solicit participants for their standup notes",
63
+ "",
64
+ solicitStandupNotesRequest,
65
+ )
66
67
}
68
+
69
func solicitStandupNotes(channel string) (string, error) {
70
return solicitStandupMessage, nil
71
72
73
+func solicitStandupNotesRequest(command *bot.Cmd) (msg string, err error) {
74
+ return solicitStandupNotes(command.Channel)
75
+}
76
77
func shareStandupNotesRequest(command *bot.Cmd) (msg string, err error) {
78
return shareStandupNotes(command.Channel)
79
0 commit comments