Browse Source

Add support for leaving guilds

feature/storage
Andrei 8 years ago
parent
commit
6af9e24456
  1. 3
      disco/api/client.py
  2. 2
      disco/api/http.py
  3. 3
      disco/types/guild.py

3
disco/api/client.py

@ -311,6 +311,9 @@ class APIClient(LoggingClass):
r = self.http(Routes.USERS_ME_PATCH, json=payload)
return User.create(self.client, r.json())
def users_me_guilds_delete(self, guild):
self.http(Routes.USERS_ME_GUILDS_DELETE, dict(guild=guild))
def users_me_dms_create(self, recipient_id):
r = self.http(Routes.USERS_ME_DMS_CREATE, json={
'recipient_id': recipient_id,

2
disco/api/http.py

@ -108,7 +108,7 @@ class Routes(object):
USERS_ME_GET = (HTTPMethod.GET, USERS + '/@me')
USERS_ME_PATCH = (HTTPMethod.PATCH, USERS + '/@me')
USERS_ME_GUILDS_LIST = (HTTPMethod.GET, USERS + '/@me/guilds')
USERS_ME_GUILDS_LEAVE = (HTTPMethod.DELETE, USERS + '/@me/guilds/{guild}')
USERS_ME_GUILDS_DELETE = (HTTPMethod.DELETE, USERS + '/@me/guilds/{guild}')
USERS_ME_DMS_LIST = (HTTPMethod.GET, USERS + '/@me/channels')
USERS_ME_DMS_CREATE = (HTTPMethod.POST, USERS + '/@me/channels')
USERS_ME_CONNECTIONS_LIST = (HTTPMethod.GET, USERS + '/@me/connections')

3
disco/types/guild.py

@ -420,3 +420,6 @@ class Guild(SlottedModel, Permissible):
def create_channel(self, *args, **kwargs):
return self.client.api.guilds_channels_create(self.id, *args, **kwargs)
def leave(self):
return self.client.api.users_me_guilds_delete(self.id)

Loading…
Cancel
Save