From ea39644c2aa988d713cb9af43a0bbddaea2bef06 Mon Sep 17 00:00:00 2001 From: Sebastian <42180891+sebm253@users.noreply.github.com> Date: Thu, 5 Sep 2024 21:26:58 +0200 Subject: [PATCH 1/2] Add activity feed features --- docs/resources/Guild.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/docs/resources/Guild.md b/docs/resources/Guild.md index 9dd816a286..822034415f 100644 --- a/docs/resources/Guild.md +++ b/docs/resources/Guild.md @@ -128,6 +128,8 @@ Guilds in Discord represent an isolated collection of users and channels, and ar | Feature | Description | |-------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------| +| ACTIVITY_FEED_DISABLED_BY_USER | guild has disabled the activity feed | +| ACTIVITY_FEED_ENABLED_BY_USER | guild has enabled the activity feed | | ANIMATED_BANNER | guild has access to set an animated guild banner image | | ANIMATED_ICON | guild has access to set an animated guild icon | | APPLICATION_COMMAND_PERMISSIONS_V2 | guild is using the [old permissions configuration behavior](#DOCS_CHANGE_LOG/upcoming-application-command-permission-changes) | @@ -158,12 +160,14 @@ Guilds in Discord represent an isolated collection of users and channels, and ar ###### Mutable Guild Features -| Features | Required Permissions | Effects | -|----------------------|----------------------|-----------------------------------------------------------| -| COMMUNITY | Administrator | Enables Community Features in the guild | -| DISCOVERABLE | Administrator* | Enables discovery in the guild, making it publicly listed | -| INVITES_DISABLED | Manage Guild | Pauses all invites/access to the server | -| RAID_ALERTS_DISABLED | Manage Guild | Disables alerts for join raids | +| Features | Required Permissions | Effects | +|--------------------------------|----------------------|-----------------------------------------------------------| +| ACTIVITY_FEED_DISABLED_BY_USER | Manage Guild | Disables the activity feed | +| ACTIVITY_FEED_ENABLED_BY_USER | Manage Guild | Enables the activity feed | +| COMMUNITY | Administrator | Enables Community Features in the guild | +| DISCOVERABLE | Administrator* | Enables discovery in the guild, making it publicly listed | +| INVITES_DISABLED | Manage Guild | Pauses all invites/access to the server | +| RAID_ALERTS_DISABLED | Manage Guild | Disables alerts for join raids | \* Server also must be passing all discovery requirements From 4fd8117c9a3da38fe71ecdb4cd4dc9f77d6dcc6f Mon Sep 17 00:00:00 2001 From: Sebastian <42180891+sebm253@users.noreply.github.com> Date: Thu, 5 Sep 2024 21:28:39 +0200 Subject: [PATCH 2/2] i dont even know