feat: make fallback ping use guild instead of hardcoded value
Some checks failed
Code Analysis / SonarQube (push) Failing after 17s
Node.js CI / Lint and Test (push) Successful in 38s

So we can reuse this bot for other utilities
This commit is contained in:
2025-07-01 13:47:07 -07:00
parent 5a8e56d188
commit a632f2b924

View File

@ -70,14 +70,14 @@ export const standup = async(
roles: [
channels.find((c) => {
return c.channelId === channel.id;
})?.roleId ?? "692816967895220344",
})?.roleId ?? channel.guildId,
],
},
content:
`Good morning <@&${
channels.find((c) => {
return c.channelId === channel.id;
})?.roleId ?? "692816967895220344"
})?.roleId ?? channel.guildId
}> It is time for your daily progress update. Please share the following in this thread:
1⃣ What did you accomplish yesterday?