File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class OAuth2Scope(Enum):
43
43
| Attribute | Name | Description |
44
44
+=========================================================+==========================================+====================================================================================================================+
45
45
| .. attribute:: READ_ACTIVITIES | activities.read | allows your app to fetch data from a user's "Now Playing/Recently Played" list |
46
- | | | - **requires Discord approval** |
46
+ | | | - **not currently available for apps** |
47
47
+---------------------------------------------------------+------------------------------------------+--------------------------------------------------------------------------------------------------------------------+
48
48
| .. attribute:: WRITE_ACTIVITIES | activities.write | allows your app to update a user's activity |
49
49
| | | - **requires Discord approval** (NOT REQUIRED FOR GAMESDK ACTIVITY MANAGER) |
Original file line number Diff line number Diff line change @@ -600,6 +600,11 @@ def view_creator_monetization_analytics(self):
600
600
def use_soundboard (self ):
601
601
""":class:`bool`: Returns ``True`` if a user can use the soundboard in a voice channel."""
602
602
return 1 << 42
603
+
604
+ @flag_value
605
+ def send_voice_messages (self ):
606
+ """:class:`bool`: Returns ``True`` if a user can send voice messages."""
607
+ return 1 << 46
603
608
604
609
605
610
def augment_from_permissions (cls ):
You can’t perform that action at this time.
0 commit comments