Closed williamhorning closed 1 year ago
Hmmm, I've held off on making channel methods because the Guilded API at most gives a channel ID in payloads, meaning you'd have a channel object with just an ID.
I recommend using client.webhooks.create if the rest router is giving too complex payloads back to you.
@zaida04 I guess that makes sense, though I didn't know there was the client.webhooks.create function
Is your feature request related to a problem? Please describe. Not really, this would allow us to create webhooks the same was as discord.js.
Describe the solution you'd like In discord.js, there is a
channel.createWebhook()
function that allows for us to create webhooks in a channel but there isn't an equivalent in guilded.js.Describe alternatives you've considered Currently, I use the
client.rest.router.createWebhook()
function to do this, but it's a bit more complex thanchannel.createWebhook()
in discord.js.Additional context