Browse Source

Make DMChannels and GroupChannels mentionable

pull/9382/head
PythonCoderAS 2 years ago
committed by GitHub
parent
commit
4046758a51
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      discord/channel.py

10
discord/channel.py

@ -2935,6 +2935,11 @@ class DMChannel(discord.abc.Messageable, discord.abc.PrivateChannel, Hashable):
"""
return f'https://discord.com/channels/@me/{self.id}'
@property
def mention(self) -> str:
""":class:`str`: The string that allows you to mention the channel."""
return f'<#{self.id}>'
@property
def created_at(self) -> datetime.datetime:
""":class:`datetime.datetime`: Returns the direct message channel's creation time in UTC."""
@ -3114,6 +3119,11 @@ class GroupChannel(discord.abc.Messageable, discord.abc.PrivateChannel, Hashable
"""
return f'https://discord.com/channels/@me/{self.id}'
@property
def mention(self) -> str:
""":class:`str`: The string that allows you to mention the channel."""
return f'<#{self.id}>'
def permissions_for(self, obj: Snowflake, /) -> Permissions:
"""Handles permission resolution for a :class:`User`.

Loading…
Cancel
Save