PythonCoderAS
4 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
10 additions and
0 deletions
-
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`. |
|
|
|
|
|
|
|