mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-16 11:33:30 +01:00
feat: Add support for Guild#setDefaultMessageNotifications (#2624)
* Feat: Guild#setDefaultMessageNotifications * fix typo
This commit is contained in:
@@ -688,6 +688,18 @@ class Guild extends Base {
|
|||||||
return this.edit({ explicitContentFilter }, reason);
|
return this.edit({ explicitContentFilter }, reason);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* eslint-disable max-len */
|
||||||
|
/**
|
||||||
|
* Edits the setting of the default message notifications of the guild.
|
||||||
|
* @param {DefaultMessageNotifications|number} defaultMessageNotifications The new setting for the default message notifications
|
||||||
|
* @param {string} [reason] Reason for changing the setting of the default message notifications
|
||||||
|
* @returns {Promise<Guild>}
|
||||||
|
*/
|
||||||
|
setDefaultMessageNotifications(defaultMessageNotifications, reason) {
|
||||||
|
return this.edit({ defaultMessageNotifications }, reason);
|
||||||
|
}
|
||||||
|
/* eslint-enable max-len */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Edits the name of the guild.
|
* Edits the name of the guild.
|
||||||
* @param {string} name The new name of the guild
|
* @param {string} name The new name of the guild
|
||||||
|
|||||||
Reference in New Issue
Block a user