We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b47be5 commit 6a03cbcCopy full SHA for 6a03cbc
src/bot.py
@@ -115,8 +115,12 @@ async def on_add_checkmark_reaction(self, reaction: RawReactionActionEvent) -> N
115
embed = nextcord.Embed(color=5814783)
116
add_localized_times_to_embed(embed, meeting_notification.date)
117
118
+ role = channel.guild.get_role(MEETING_WATCHERS_ROLE_ID)
119
+
120
+ assert role
121
122
message = await channel.send(
- "Hey @meeting-watchers 👋 the next monthly meeting will happen "
123
+ f"Hey {role.mention} 👋 the next monthly meeting will happen "
124
f"{meeting_notification.date.humanize()} 📅\n"
125
f"Realtime notes will be posted here: {NOTES_LINK}.\n\n"
126
"Feel free to add any topics you'd like to discuss in the meeting! 🍓",
0 commit comments