hullcss-discord-bot/SlashCommands/admin/unlock.js

21 lines
764 B
JavaScript
Raw Normal View History

2022-07-25 20:33:58 +01:00
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.")
},
};