From c0b21ce82f5e1bf74e891b15fb3be3e12aed6b3b Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Wed, 2 Jul 2025 14:48:50 -0700 Subject: [PATCH] feat: confirm participation --- src/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/index.ts b/src/index.ts index 6dd9474..c9bff77 100644 --- a/src/index.ts +++ b/src/index.ts @@ -62,6 +62,12 @@ client.on(Events.MessageCreate, async(message) => { } if (!activeIds.includes(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.`, + }); } });