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

Document newer guild member flags #7113

Merged
merged 1 commit into from
Aug 29, 2024
Merged
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
17 changes: 11 additions & 6 deletions docs/resources/Guild.md
Original file line number Diff line number Diff line change
Expand Up @@ -384,12 +384,17 @@ A partial [guild](#DOCS_RESOURCES_GUILD/guild-object) object. Represents an Offl

###### Guild Member Flags

| Flag | Value | Description | Editable |
|-----------------------|----------|-------------------------------------------------------|----------|
| DID_REJOIN | `1 << 0` | Member has left and rejoined the guild | false |
| COMPLETED_ONBOARDING | `1 << 1` | Member has completed onboarding | false |
| BYPASSES_VERIFICATION | `1 << 2` | Member is exempt from guild verification requirements | true |
| STARTED_ONBOARDING | `1 << 3` | Member has started onboarding | false |
| Flag | Value | Description | Editable |
|---------------------------------|----------|------------------------------------------------------------------------------|----------|
| DID_REJOIN | `1 << 0` | Member has left and rejoined the guild | false |
| COMPLETED_ONBOARDING | `1 << 1` | Member has completed onboarding | false |
| BYPASSES_VERIFICATION | `1 << 2` | Member is exempt from guild verification requirements | true |
| STARTED_ONBOARDING | `1 << 3` | Member has started onboarding | false |
| IS_GUEST | `1 << 4` | Member is a guest and can only access the voice channel they were invited to | false |
| STARTED_HOME_ACTIONS | `1 << 5` | Member has started Server Guide new member actions | false |
| COMPLETED_HOME_ACTIONS | `1 << 6` | Member has completed Server Guide new member actions | false |
| AUTOMOD_QUARANTINED_USERNAME | `1 << 7` | Member's username, display name, or nickname is blocked by AutoMod | false |
| DM_SETTINGS_UPSELL_ACKNOWLEDGED | `1 << 9` | Member has dismissed the DM settings upsell | false |

> info
> BYPASSES_VERIFICATION allows a member who does not meet verification requirements to participate in a server.
Expand Down