forked from navn-r/standup-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
38 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
module.exports = { | ||
name: "show", | ||
description: "Shows standup prompt", | ||
async execute(message, args) { | ||
message.channel.send(` | ||
const PROMPT =` | ||
Here is the daily standup prompt: | ||
\`\`\` | ||
1. What have you done since yesterday? | ||
2. What are you planning on doing today? | ||
3. Any impediments or stumbling blocks? | ||
\`\`\`Please make sure you have thought about your response **_very carefully_** as standups are more for *the entire team*. | ||
Once you are ready to respond, simply DM me with \`!reply ...\` where \`...\` represents your response. :stuck_out_tongue: | ||
`); | ||
` | ||
|
||
module.exports.message = PROMPT; | ||
|
||
module.exports = { | ||
name: "show", | ||
description: "Shows standup prompt", | ||
async execute(message, args) { | ||
message.channel.send(PROMPT); | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters