Browse Source
Add message content intent application flags
pull/7494/head
jack1142
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
12 additions and
0 deletions
-
discord/flags.py
|
|
@ -1120,3 +1120,15 @@ class ApplicationFlags(BaseFlags): |
|
|
|
def embedded(self): |
|
|
|
""":class:`bool`: Returns ``True`` if the application is embedded within the Discord client.""" |
|
|
|
return 1 << 17 |
|
|
|
|
|
|
|
@flag_value |
|
|
|
def gateway_message_content(self): |
|
|
|
""":class:`bool`: Returns ``True`` if the application is verified and is allowed to |
|
|
|
read message content in guilds.""" |
|
|
|
return 1 << 18 |
|
|
|
|
|
|
|
@flag_value |
|
|
|
def gateway_message_content_limited(self): |
|
|
|
""":class:`bool`: Returns ``True`` if the application is unverified and is allowed to |
|
|
|
read message content in guilds.""" |
|
|
|
return 1 << 19 |
|
|
|