Browse Source

Merge 4046758a51 into 26855160f8

pull/9382/merge
PythonCoderAS 4 weeks ago
committed by GitHub
parent
commit
9624fa517c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 10
      discord/channel.py

10
discord/channel.py

@ -3212,6 +3212,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."""
@ -3391,6 +3396,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