A powerful and extendable Discord bot, with it's own module system :3 thevoid.cafe/projects/voidy

🐛 Fix incorrect usage of c.req.param()

Changed files
+4 -4
packages
bot
src
modules
user
commands
consent
integration
+1 -1
packages/bot/src/modules/user/commands/consent/update.ts
··· 5 5 export default { 6 6 id: "user.consent.update", 7 7 data: new SlashCommandSubcommandBuilder() 8 - .setName("Update Consent") 8 + .setName("update") 9 9 .setDescription("Update your user consent choices.") 10 10 .addStringOption((option) => 11 11 option
+3 -3
packages/bot/src/modules/user/commands/integration/update.ts
··· 1 - import { MessageFlags, SlashCommandSubcommandGroupBuilder } from "discord.js"; 1 + import { MessageFlags, SlashCommandSubcommandBuilder } from "discord.js"; 2 2 import type { Command } from "@voidy/framework"; 3 3 import { UserIntegration } from "../../schemas/UserIntegration"; 4 4 5 5 export default { 6 6 id: "user.integration.update", 7 - data: new SlashCommandSubcommandGroupBuilder() 8 - .setName("Update or link integration") 7 + data: new SlashCommandSubcommandBuilder() 8 + .setName("update") 9 9 .setDescription("Update one of your external service integrations.") 10 10 .addStringOption((option) => 11 11 option