/[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 54 by rakin, Mon Jul 29 17:28:24 2024 UTC revision 55 by rakin, Mon Jul 29 17:28:24 2024 UTC
# Line 31  const commands = [ Line 31  const commands = [
31          .addUserOption(option => option.setName('user').setDescription('The user')),          .addUserOption(option => option.setName('user').setDescription('The user')),
32    
33      // AUTOMATION      // AUTOMATION
34        new SlashCommandBuilder().setName('ballot').setDescription('Ballot engine')
35            .addSubcommand(subcommand =>
36                subcommand
37                    .setName('create')
38                    .setDescription('Send a ballot/poll message for collecting votes')
39                    .addStringOption(option => option.setName('content').setDescription('Message content').setRequired(true))
40                    .addBooleanOption(option => option.setName('anonymous').setDescription('If this is set to true then the syetem won\'t show your username'))
41                    .addChannelOption(option => option.setName('channel').setDescription('The channel where the message should be sent')))
42            .addSubcommand(subcommand =>
43                subcommand
44                    .setName('view')
45                    .setDescription('Get information/stats about a ballot')
46                    .addIntegerOption(option => option.setName('id').setDescription('The ballot ID'))),
47            
48      new SlashCommandBuilder().setName('queues').setDescription('List all queued jobs'),      new SlashCommandBuilder().setName('queues').setDescription('List all queued jobs'),
49    
50      new SlashCommandBuilder().setName('schedule').setDescription('Schedule a message for sending later')      new SlashCommandBuilder().setName('schedule').setDescription('Schedule a message for sending later')

Legend:
Removed from v.54  
changed lines
  Added in v.55

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26