/[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 53 by rakin, Mon Jul 29 17:28:23 2024 UTC revision 54 by rakin, Mon Jul 29 17:28:24 2024 UTC
# Line 17  else { Line 17  else {
17  const { CLIENT_ID, GUILD_ID, TOKEN } = process.env;  const { CLIENT_ID, GUILD_ID, TOKEN } = process.env;
18    
19  const commands = [  const commands = [
20      new SlashCommandBuilder().setName('about').setDescription('Show information about the bot'),      // SETTINGS
     new SlashCommandBuilder().setName('test').setDescription('Test command'),  
     new SlashCommandBuilder().setName('system').setDescription('Show the system status'),  
   
     // ABOUT  
21      new SlashCommandBuilder().setName('help').setDescription('A short documentation about the commands')      new SlashCommandBuilder().setName('help').setDescription('A short documentation about the commands')
22          .addStringOption(option => option.setName('command').setDescription("The command")),          .addStringOption(option => option.setName('command').setDescription("The command")),
23        new SlashCommandBuilder().setName('about').setDescription('Show information about the bot'),
24        new SlashCommandBuilder().setName('system').setDescription('Show the system status'),
25    
26      // INFORMATION      // INFORMATION
27      new SlashCommandBuilder().setName('stats').setDescription('Show the server statistics'),      new SlashCommandBuilder().setName('stats').setDescription('Show the server statistics'),
28        new SlashCommandBuilder().setName('profile').setDescription('Show someone\'s profile')
29            .addUserOption(option => option.setName('user').setDescription('The user')),
30        new SlashCommandBuilder().setName('avatar').setDescription('Show someone\'s avatar')
31            .addUserOption(option => option.setName('user').setDescription('The user')),
32    
33      // AUTOMATION      // AUTOMATION
34      new SlashCommandBuilder().setName('queues').setDescription('List all queued jobs'),      new SlashCommandBuilder().setName('queues').setDescription('List all queued jobs'),

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26