Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add activity feed features #7129

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions docs/resources/Guild.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Copy link
Contributor Author

@sebm253 sebm253 Sep 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe "guild has manually disabled/enabled"?

| 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) |
Expand Down Expand Up @@ -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

Expand Down