/[sudobot]/trunk/deploy-commands.js
ViewVC logotype

Diff of /trunk/deploy-commands.js

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 60 by rakin, Mon Jul 29 17:28:26 2024 UTC revision 61 by rakin, Mon Jul 29 17:28:26 2024 UTC
# Line 139  const commands = [ Line 139  const commands = [
139          .addStringOption(option => option.setName('reason').setDescription("The reason for banning this user"))          .addStringOption(option => option.setName('reason').setDescription("The reason for banning this user"))
140          .addIntegerOption(option => option.setName('days').setDescription("The days old messages to delete of this user").setMinValue(0).setMaxValue(7)),          .addIntegerOption(option => option.setName('days').setDescription("The days old messages to delete of this user").setMinValue(0).setMaxValue(7)),
141    
142        new SlashCommandBuilder().setName('massban').setDescription('Ban multiple users')
143            .addStringOption(option => option.setName('users').setDescription("The user IDs (separated by spaces)").setRequired(true))
144            .addStringOption(option => option.setName('reason').setDescription("The reason for banning"))
145            .addIntegerOption(option => option.setName('days').setDescription("The days old messages to delete of these users").setMinValue(0).setMaxValue(7)),
146    
147      new SlashCommandBuilder().setName('kick').setDescription('Kick a member')      new SlashCommandBuilder().setName('kick').setDescription('Kick a member')
148          .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))          .addUserOption(option => option.setName('member').setDescription("The member").setRequired(true))
149          .addStringOption(option => option.setName('reason').setDescription("The reason for kicking this user")),          .addStringOption(option => option.setName('reason').setDescription("The reason for kicking this user")),

Legend:
Removed from v.60  
changed lines
  Added in v.61

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26