From 8c22fff4ce8c92e61c9f6739a8cd53babf013644 Mon Sep 17 00:00:00 2001 From: Robas Date: Mon, 9 Jun 2025 23:02:29 +0200 Subject: [PATCH 1/4] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 4c7b7f5..353906f 100644 --- a/readme.md +++ b/readme.md @@ -57,7 +57,7 @@ Inspired by the **CCB**, a collective of French streamers, MediaChat allows you ## 🤩 Join the Adventure -Want to contribute your magic touch? We love it! Here's how you can get involved: +Want to contribute your magic touch? We love it! Here's how you can get involved : 1. **Fork the project**. 2. **Create a funky branch**: From 32b35d4ef2ac0aff143ccc7f8a7ac72d8d6216a0 Mon Sep 17 00:00:00 2001 From: Robas Date: Sat, 21 Jun 2025 14:36:45 +0200 Subject: [PATCH 2/4] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 353906f..799e9a2 100644 --- a/readme.md +++ b/readme.md @@ -51,7 +51,7 @@ Inspired by the **CCB**, a collective of French streamers, MediaChat allows you - ⚙️ **Backend** : Node.js + Express. - 🌐 **WebSocket** : Socket.IO - 🐳 **Containerisation** : Docker. -- 🎮 **Discord.js**: Generating Discord commands +- 🎮 **DiscordJS**: Generating Discord commands --- From a6331b537254a1428be57438376bd1a0206c25fd Mon Sep 17 00:00:00 2001 From: Robas Date: Tue, 8 Jul 2025 13:36:49 +0200 Subject: [PATCH 3/4] Make /whosup command replies ephemeral Updated the whoUp command to send ephemeral replies, ensuring that only the user who invoked the command can see the response. --- infrastructure/discord/commands/whoUp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/discord/commands/whoUp.ts b/infrastructure/discord/commands/whoUp.ts index b50c0dc..d1f3319 100644 --- a/infrastructure/discord/commands/whoUp.ts +++ b/infrastructure/discord/commands/whoUp.ts @@ -23,7 +23,7 @@ export const execute = async (interaction: ChatInputCommandInteraction) => { discordResponse = `${otherUsers} and ${lastUser} are connected.`; } - await interaction.deferReply(); + await interaction.deferReply({ephemeral: true}); await interaction.editReply(`${discordResponse}`); } From fd331e9791f0d88dde5d7b6ec46b0cfe0b7d8442 Mon Sep 17 00:00:00 2001 From: Robas Date: Mon, 19 Jan 2026 22:41:10 +0000 Subject: [PATCH 4/4] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 799e9a2..5dc4845 100644 --- a/readme.md +++ b/readme.md @@ -38,7 +38,7 @@ Inspired by the **CCB**, a collective of French streamers, MediaChat allows you ``` - You can get your **DISCORD_TOKEN** by creating a bot on the [Discord Developer Portal](https://discord.com/developers/applications). - You can get your **DISCORD_CLIENT_ID** and **DISCORD_GUILD_ID** via the Discord App (right click on the Bot and on the Server to get the ID) -4. **use docker** : +4. **use docker compose** : ```bash docker-compose up -d --build ```