Add webhook.url

This commit is contained in:
rooni 2017-09-18 19:31:20 +02:00
parent 025136076a
commit 415ca9a774

View File

@ -359,6 +359,11 @@ class Webhook:
def __repr__(self):
return '<Webhook id=%r>' % self.id
@property
def url(self):
"""Returns the webhook's url."""
return 'https://discordapp.com/api/webhooks/{}/{}'.format(self.id, self.token)
@classmethod
def partial(cls, id, token, *, adapter):
"""Creates a partial :class:`Webhook`.