aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRapptz <[email protected]>2016-03-25 18:30:42 -0400
committerRapptz <[email protected]>2016-03-25 18:30:42 -0400
commit2ef38107d8f8bd035bd39097a3a74275cef16dd5 (patch)
tree4076632b6cf5e77c8c2729d3309b38e6b6c5f102
parent[commands] Add bot decorators into __all__. (diff)
downloaddiscord.py-2ef38107d8f8bd035bd39097a3a74275cef16dd5.tar.xz
discord.py-2ef38107d8f8bd035bd39097a3a74275cef16dd5.zip
Add missing created_at properties for other objects.
Such as Channel, PrivateChannel, Object and Role.
-rw-r--r--discord/channel.py10
-rw-r--r--discord/object.py7
-rw-r--r--discord/role.py6
3 files changed, 23 insertions, 0 deletions
diff --git a/discord/channel.py b/discord/channel.py
index 8f718fbe..11f6b722 100644
--- a/discord/channel.py
+++ b/discord/channel.py
@@ -143,6 +143,11 @@ class Channel(Hashable):
"""str : The string that allows you to mention the channel."""
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):
"""Handles permission resolution for the current :class:`Member`.
@@ -255,6 +260,11 @@ class PrivateChannel(Hashable):
def __str__(self):
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):
"""Handles permission resolution for a :class:`User`.
diff --git a/discord/object.py b/discord/object.py
index 096d240c..2bf2d495 100644
--- a/discord/object.py
+++ b/discord/object.py
@@ -23,6 +23,8 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
"""
+from .utils import snowflake_time
+
class Object:
"""Represents a generic Discord object.
@@ -45,3 +47,8 @@ class Object:
def __init__(self, id):
self.id = id
+
+ @property
+ def created_at(self):
+ """Returns the private channel's creation time in UTC."""
+ return utils.snowflake_time(self.id)
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)