Add missing created_at properties for other objects.

Such as Channel, PrivateChannel, Object and Role.
This commit is contained in:
Rapptz
2016-03-25 18:30:42 -04:00
parent 050c668eac
commit 2ef38107d8
3 changed files with 23 additions and 0 deletions

View File

@ -27,6 +27,7 @@ DEALINGS IN THE SOFTWARE.
from .permissions import Permissions
from .colour import Colour
from .mixins import Hashable
from .utils import snowflake_time
class Role(Hashable):
"""Represents a Discord role in a :class:`Server`.
@ -90,3 +91,8 @@ class Role(Hashable):
def is_everyone(self):
"""Checks if the role is the @everyone role."""
return self._is_everyone
@property
def created_at(self):
"""Returns the role's creation time in UTC."""
return utils.snowflake_time(self.id)