Compare commits
No commits in common. "73e5050ded46e78a60a9baba3e30e8191a6fd17e" and "03b3b9189e0a6456f24017138d740d3aa30ffd73" have entirely different histories.
73e5050ded
...
03b3b9189e
3 changed files with 1 additions and 30 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,4 +2,3 @@
|
|||
node_modules/
|
||||
bin/
|
||||
config/config.json
|
||||
json/board/
|
|
@ -7,7 +7,7 @@ const { twiConsumer, twiConsumerSecret, twiToken, twiTokenSecret } = process.env
|
|||
|
||||
export default {
|
||||
data: new SlashCommandBuilder()
|
||||
.setName('deletetweet')
|
||||
.setName('deletewteet')
|
||||
.setDescription('Delete a tweet')
|
||||
.addStringOption(option =>
|
||||
option.setName('tweetid')
|
||||
|
|
|
@ -113,34 +113,6 @@ const commands = [
|
|||
option.setName('something')
|
||||
.setDescription('🤫')
|
||||
.setRequired(true)),
|
||||
|
||||
new SlashCommandBuilder()
|
||||
.setName('die')
|
||||
.setDescription('Kill the bot'),
|
||||
|
||||
new SlashCommandBuilder()
|
||||
.setName('ublacklist')
|
||||
.setDescription('Blacklist a user from the bot')
|
||||
.addStringOption(option =>
|
||||
option.setName('command')
|
||||
.setDescription('Which command do you want to get a user blacklisted from?')
|
||||
.setRequired(true))
|
||||
.addStringOption(option =>
|
||||
option.setName('userid')
|
||||
.setDescription('Who do you want to blacklist?')
|
||||
.setRequired(true))
|
||||
.addStringOption(option =>
|
||||
option.setName('reason')
|
||||
.setDescription('The reason of the blacklist.')
|
||||
.setRequired(false)),
|
||||
|
||||
new SlashCommandBuilder()
|
||||
.setName('deletetweet')
|
||||
.setDescription('Delete a tweet')
|
||||
.addStringOption(option =>
|
||||
option.setName('tweetid')
|
||||
.setDescription('The id of the tweet you wish to delete.')
|
||||
.setRequired(true)),
|
||||
]
|
||||
.map(command => command.toJSON());
|
||||
|
||||
|
|
Loading…
Reference in a new issue