Skip to content

Commit

Permalink
Update guild member flags
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbt365 committed Aug 30, 2024
1 parent c36a82e commit 58023ec
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/model/guild/member.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,17 @@ bitflags! {
const BYPASSES_VERIFICATION = 1 << 2;
/// Member has started onboarding. Not editable
const STARTED_ONBOARDING = 1 << 3;
/// Member is a guest and can only access the voice channel they were invited to. Not
/// editable
const IS_GUEST = 1 << 4;
/// Member has started Server Guide new member actions. Not editable
const STARTED_HOME_ACTIONS = 1 << 5;
/// Member has completed Server Guide new member actions. Not editable
const COMPLETED_HOME_ACTIONS = 1 << 6;
/// Member's username, display name, or nickname is blocked by AutoMod. Not editable
const AUTOMOD_QUARANTINED_USERNAME = 1 << 7;
/// Member has dismissed the DM settings upsell. Not editable
const DM_SETTINGS_UPSELL_ACKNOWLEDGED = 1 << 9;
}
}

Expand Down

0 comments on commit 58023ec

Please sign in to comment.