|
@ -143,6 +143,11 @@ class Channel(Hashable): |
|
|
"""str : The string that allows you to mention the channel.""" |
|
|
"""str : The string that allows you to mention the channel.""" |
|
|
return '<#{0.id}>'.format(self) |
|
|
return '<#{0.id}>'.format(self) |
|
|
|
|
|
|
|
|
|
|
|
@property |
|
|
|
|
|
def created_at(self): |
|
|
|
|
|
"""Returns the channel's creation time in UTC.""" |
|
|
|
|
|
return utils.snowflake_time(self.id) |
|
|
|
|
|
|
|
|
def permissions_for(self, member): |
|
|
def permissions_for(self, member): |
|
|
"""Handles permission resolution for the current :class:`Member`. |
|
|
"""Handles permission resolution for the current :class:`Member`. |
|
|
|
|
|
|
|
@ -255,6 +260,11 @@ class PrivateChannel(Hashable): |
|
|
def __str__(self): |
|
|
def __str__(self): |
|
|
return 'Direct Message with {0.name}'.format(self.user) |
|
|
return 'Direct Message with {0.name}'.format(self.user) |
|
|
|
|
|
|
|
|
|
|
|
@property |
|
|
|
|
|
def created_at(self): |
|
|
|
|
|
"""Returns the private channel's creation time in UTC.""" |
|
|
|
|
|
return utils.snowflake_time(self.id) |
|
|
|
|
|
|
|
|
def permissions_for(self, user): |
|
|
def permissions_for(self, user): |
|
|
"""Handles permission resolution for a :class:`User`. |
|
|
"""Handles permission resolution for a :class:`User`. |
|
|
|
|
|
|
|
|