aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/enums.py12
-rw-r--r--docs/api.rst7
2 files changed, 14 insertions, 5 deletions
diff --git a/discord/enums.py b/discord/enums.py
index 1fcdea82..d0c343a8 100644
--- a/discord/enums.py
+++ b/discord/enums.py
@@ -70,11 +70,13 @@ class VoiceRegion(Enum):
return self.value
class VerificationLevel(Enum):
- none = 0
- low = 1
- medium = 2
- high = 3
- table_flip = 3
+ none = 0
+ low = 1
+ medium = 2
+ high = 3
+ table_flip = 3
+ highest = 4
+ double_table_flip = 4
def __str__(self):
return self.name
diff --git a/docs/api.rst b/docs/api.rst
index eaa8372b..35d88ee5 100644
--- a/docs/api.rst
+++ b/docs/api.rst
@@ -679,6 +679,13 @@ All enumerations are subclasses of `enum`_.
.. attribute:: table_flip
An alias for :attr:`high`.
+ .. attribute:: highest
+
+ Member must have a verified phone on their Discord account.
+
+ .. attribute:: double_table_flip
+
+ An alias for :attr:`highest`.
.. class:: ContentFilter