feat: confirm participation
Some checks failed
Code Analysis / SonarQube (push) Failing after 14s
Node.js CI / Lint and Test (push) Successful in 34s

This commit is contained in:
2025-07-02 14:48:50 -07:00
parent 8121f3bb6d
commit c0b21ce82f

View File

@ -62,6 +62,12 @@ client.on(Events.MessageCreate, async(message) => {
} }
if (!activeIds.includes(message.author.id)) { if (!activeIds.includes(message.author.id)) {
activeIds.push(message.author.id); activeIds.push(message.author.id);
await message.channel.send({
allowedMentions: {
parse: [],
},
content: `-# Thank you for your progress update, <@${message.author.id}>! Your participation for today has been recorded.`,
});
} }
}); });