i am creating a "ticket bot" in discord.js and have got most of it working but need help with permission overwrites
the discordjs guide shows this code but when run it creates the channel but does not do permissions.
guild.createChannel('new-channel', 'text', [
{
id: guild.defaultRole.id,
deny: ['VIEW_CHANNEL'],
},
{
id: user.id,
allow: ['VIEW_CHANNEL'],
},
]);
}