jack1142
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
15 additions and
0 deletions
-
discord/enums.py
-
discord/flags.py
-
docs/api.rst
|
|
@ -462,6 +462,7 @@ class UserFlags(Enum): |
|
|
|
verified_bot = 65536 |
|
|
|
verified_bot_developer = 131072 |
|
|
|
discord_certified_moderator = 262144 |
|
|
|
bot_http_interactions = 524288 |
|
|
|
|
|
|
|
|
|
|
|
class ActivityType(Enum): |
|
|
|
|
|
@ -419,6 +419,15 @@ class PublicUserFlags(BaseFlags): |
|
|
|
""" |
|
|
|
return UserFlags.discord_certified_moderator.value |
|
|
|
|
|
|
|
@flag_value |
|
|
|
def bot_http_interactions(self): |
|
|
|
""":class:`bool`: Returns ``True`` if the user is a bot that only uses HTTP interactions |
|
|
|
and is shown in the online member list. |
|
|
|
|
|
|
|
.. versionadded:: 2.0 |
|
|
|
""" |
|
|
|
return UserFlags.bot_http_interactions.value |
|
|
|
|
|
|
|
def all(self) -> List[UserFlags]: |
|
|
|
"""List[:class:`UserFlags`]: Returns all public flags the user has.""" |
|
|
|
return [public_flag for public_flag in UserFlags if self._has_flag(public_flag.value)] |
|
|
|
|
|
@ -1363,6 +1363,11 @@ of :class:`enum.Enum`. |
|
|
|
.. attribute:: discord_certified_moderator |
|
|
|
|
|
|
|
The user is a Discord Certified Moderator. |
|
|
|
.. attribute:: bot_http_interactions |
|
|
|
|
|
|
|
The user is a bot that only uses HTTP interactions and is shown in the online member list. |
|
|
|
|
|
|
|
.. versionadded:: 2.0 |
|
|
|
|
|
|
|
.. class:: ActivityType |
|
|
|
|
|
|
|