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):
4343 | Attribute | Name | Description |
4444 +=========================================================+==========================================+====================================================================================================================+
4545 | .. 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** |
4747 +---------------------------------------------------------+------------------------------------------+--------------------------------------------------------------------------------------------------------------------+
4848 | .. attribute:: WRITE_ACTIVITIES | activities.write | allows your app to update a user's activity |
4949 | | | - **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):
600600 def use_soundboard (self ):
601601 """:class:`bool`: Returns ``True`` if a user can use the soundboard in a voice channel."""
602602 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
603608
604609
605610def augment_from_permissions (cls ):
You can’t perform that action at this time.
0 commit comments