parent
fae7c596d1
commit
23d59d70ea
@ -228,6 +228,24 @@ class GuildChannelManager extends CachedManager {
|
||||
return new Webhook(this.client, data);
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds the target channel to a channel's followers.
|
||||
* @param {NewsChannel|Snowflake} channel The channel to follow
|
||||
* @param {TextChannelResolvable} targetChannel The channel where published announcements will be posted at
|
||||
* @param {string} [reason] Reason for creating the webhook
|
||||
* @returns {Promise<Snowflake>} Returns created target webhook id.
|
||||
*/
|
||||
async addFollower(channel, targetChannel, reason) {
|
||||
const channelId = this.resolveId(channel);
|
||||
const targetChannelId = this.resolveId(targetChannel);
|
||||
if (!channelId || !targetChannelId) throw new Error('GUILD_CHANNEL_RESOLVE');
|
||||
const { webhook_id } = await this.client.api.channels[channelId].followers.post({
|
||||
data: { webhook_channel_id: targetChannelId },
|
||||
reason,
|
||||
});
|
||||
return webhook_id;
|
||||
}
|
||||
|
||||
/**
|
||||
* The data for a guild channel.
|
||||
* @typedef {Object} ChannelData
|
||||
|
@ -10,6 +10,7 @@ const { Error } = require('../errors');
|
||||
class NewsChannel extends BaseGuildTextChannel {
|
||||
/**
|
||||
* Adds the target to this channel's followers.
|
||||
* <info>If you need the created webhook id, use {@link GuildChannelManager#addFollower}.</info>
|
||||
* @param {TextChannelResolvable} channel The channel where the webhook should be created
|
||||
* @param {string} [reason] Reason for creating the webhook
|
||||
* @returns {Promise<NewsChannel>}
|
||||
|
5
typings/index.d.ts
vendored
5
typings/index.d.ts
vendored
@ -3913,6 +3913,11 @@ export class GuildChannelManager extends CachedManager<Snowflake, GuildBasedChan
|
||||
name: string,
|
||||
options?: ChannelWebhookCreateOptions,
|
||||
): Promise<Webhook>;
|
||||
public addFollower(
|
||||
channel: NewsChannel | Snowflake,
|
||||
targetChannel: TextChannelResolvable,
|
||||
reason?: string,
|
||||
): Promise<Snowflake>;
|
||||
public edit(channel: GuildChannelResolvable, data: ChannelData, reason?: string): Promise<GuildChannel>;
|
||||
public fetch(id: Snowflake, options?: BaseFetchOptions): Promise<GuildBasedChannel | null>;
|
||||
public fetch(
|
||||
|
Loading…
Reference in New Issue
Block a user