Browse Source

Add jump_url property to Threads

pull/7885/head
Omkaar 3 years ago
committed by GitHub
parent
commit
a6ce49833c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      discord/threads.py

8
discord/threads.py

@ -235,6 +235,14 @@ class Thread(Messageable, Hashable):
""":class:`str`: The string that allows you to mention the thread."""
return f'<#{self.id}>'
@property
def jump_url(self) -> str:
""":class:`str`: The string that allows you to mention the thread.
.. versionadded:: 2.0
"""
return f'https://discord.com/channels/{self.guild.id}/{self.id}'
@property
def members(self) -> List[ThreadMember]:
"""List[:class:`ThreadMember`]: A list of thread members in this thread.

Loading…
Cancel
Save