GUILD_UPDATE audit logs

This commit is contained in:
mniip
2022-02-22 16:48:26 +03:00
committed by GitHub
parent 550bdda51b
commit ff90e7e747
4 changed files with 103 additions and 33 deletions

View File

@@ -56,6 +56,7 @@ __all__ = (
'InteractionType',
'InteractionResponseType',
'NSFWLevel',
'MFALevel',
)
@@ -609,6 +610,11 @@ class NSFWLevel(Enum, comparable=True):
age_restricted = 3
class MFALevel(Enum, comparable=True):
disabled = 0
require_2fa = 1
E = TypeVar('E', bound='Enum')