tournament-helper-bot/commands/events/remove_from_blacklist.js

19 lines
834 B
JavaScript
Raw Normal View History

2024-12-28 14:04:25 +00:00
const { SlashCommandBuilder, MessageFlags, EmbedBuilder } = require('discord.js');
const { updateBlacklistJSON } = require("../../utils.js");
const { tournaments, blacklist, whitelist } = require("../../index.js");
module.exports = {
data: new SlashCommandBuilder()
.setName('remove_from_blacklist')
.setDescription('Убрать игрока из черного списка')
.addUserOption(option =>
option.setName('user')
.setDescription('Пользователь, с которым ассоциируется данный игрок')
.setRequired(true)),
async execute(interaction) {
blacklist.delete(interaction.options.getUser('user').id);
interaction.reply({ content: `Готово`, flags: MessageFlags.Ephemeral });
updateBlacklistJSON();
},
};