21 lines
764 B
JavaScript
21 lines
764 B
JavaScript
const { Client, CommandInteraction, Permissions } = require("discord.js");
|
|
|
|
module.exports = {
|
|
name: "unlock",
|
|
description: "unlocks a channel",
|
|
type: 'CHAT_INPUT',
|
|
/**
|
|
*
|
|
* @param {Client} client
|
|
* @param {CommandInteraction} interaction
|
|
* @param {String[]} args
|
|
*/
|
|
run: async (client, interaction, args) => {
|
|
|
|
const permission = interaction.member.permissions.has(Permissions.FLAGS.MANAGE_CHANNELS)
|
|
if (!permission)return interaction.reply({ contents: "You don't have permission to use this command", ephemeral: true });
|
|
interaction.channel.permissionOverwrites.edit(interaction.guild.roles.everyone.id, {SEND_MESSAGES: true});
|
|
interaction.reply("Channel has been unlocked.")
|
|
|
|
},
|
|
}; |