323 |
|
|
324 |
new SlashCommandBuilder().setName('warning').setDescription('Clear, remove or view warnings') |
new SlashCommandBuilder().setName('warning').setDescription('Clear, remove or view warnings') |
325 |
.addSubcommand(subcmd => { |
.addSubcommand(subcmd => { |
326 |
return subcmd.setName('view').setDescription('View information about a warning').addNumberOption(option => option.setName('id').setDescription("The warning ID").setRequired(true)); |
return subcmd.setName('view').setDescription('View information about a warning').addStringOption(option => option.setName('id').setDescription("The warning ID").setRequired(true)); |
327 |
}) |
}) |
328 |
.addSubcommand(subcmd => { |
.addSubcommand(subcmd => { |
329 |
return subcmd.setName('remove').setDescription('Remove a warning').addNumberOption(option => option.setName('id').setDescription("The warning ID").setRequired(true)); |
return subcmd.setName('remove').setDescription('Remove a warning').addStringOption(option => option.setName('id').setDescription("The warning ID").setRequired(true)); |
330 |
}) |
}) |
331 |
.addSubcommand(subcmd => { |
.addSubcommand(subcmd => { |
332 |
return subcmd.setName('list').setDescription('List warnings for a user').addUserOption(option => option.setName('user').setDescription("The user").setRequired(true)); |
return subcmd.setName('list').setDescription('List warnings for a user').addUserOption(option => option.setName('user').setDescription("The user").setRequired(true)); |