From 6af9e2445627a9aa6d15e2c5de4fd808bf449a8b Mon Sep 17 00:00:00 2001 From: Andrei Date: Tue, 11 Apr 2017 07:38:27 -0700 Subject: [PATCH] Add support for leaving guilds --- disco/api/client.py | 3 +++ disco/api/http.py | 2 +- disco/types/guild.py | 3 +++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/disco/api/client.py b/disco/api/client.py index 133472b..254bb62 100644 --- a/disco/api/client.py +++ b/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, diff --git a/disco/api/http.py b/disco/api/http.py index 088b69e..5dff893 100644 --- a/disco/api/http.py +++ b/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') diff --git a/disco/types/guild.py b/disco/types/guild.py index c4102c6..15c1c17 100644 --- a/disco/types/guild.py +++ b/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)