|coro| Joins this thread. You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. If the thread is private, :attr:`~Permissions.manage_threads` is also needed. Raises ------- Forbidden You do not have permissions to
(self)
| 740 | await self._state.http.edit_channel(self.id, applied_tags=list(applied_tags.keys()), reason=reason) |
| 741 | |
| 742 | async def join(self) -> None: |
| 743 | """|coro| |
| 744 | |
| 745 | Joins this thread. |
| 746 | |
| 747 | You must have :attr:`~Permissions.send_messages_in_threads` to join a thread. |
| 748 | If the thread is private, :attr:`~Permissions.manage_threads` is also needed. |
| 749 | |
| 750 | Raises |
| 751 | ------- |
| 752 | Forbidden |
| 753 | You do not have permissions to join the thread. |
| 754 | HTTPException |
| 755 | Joining the thread failed. |
| 756 | """ |
| 757 | await self._state.http.join_thread(self.id) |
| 758 | |
| 759 | async def leave(self) -> None: |
| 760 | """|coro| |