From 2ef38107d8f8bd035bd39097a3a74275cef16dd5 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Fri, 25 Mar 2016 18:30:42 -0400 Subject: Add missing created_at properties for other objects. Such as Channel, PrivateChannel, Object and Role. --- discord/role.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'discord/role.py') diff --git a/discord/role.py b/discord/role.py index adc8c136..dc0acdd6 100644 --- a/discord/role.py +++ b/discord/role.py @@ -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) -- cgit v1.2.3