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

19 lines
912 B
JavaScript
Raw Permalink Normal View History

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