Answers for "how to move a channel to a category discord js"

1

how to move a channel to a category discord js

let category = server.channels.find(c => c.name == "Text Channels" && c.type == "category"),
  channel = server.channels.find(c => c.name == "general" && c.type == "text");

if (category && channel) channel.setParent(category.id);
else console.error(`One of the channels is missing:\nCategory: ${!!category}\nChannel: ${!!channel}`);
Posted by: Guest on April-17-2022

Code answers related to "how to move a channel to a category discord js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language