From 17f9916b03eeb3d108913d8191a12156fd79ab85 Mon Sep 17 00:00:00 2001 From: Jeremy Zhang Date: Mon, 9 Jul 2018 05:29:02 +0000 Subject: [PATCH] Simple parser for WEBHOOKS_UPDATE --- discord/state.py | 4 ++++ docs/api.rst | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/discord/state.py b/discord/state.py index e869fec0b..28c6feb0f 100644 --- a/discord/state.py +++ b/discord/state.py @@ -779,6 +779,10 @@ class ConnectionState: log.info('Processed a chunk for %s members in guild ID %s.', len(members), guild_id) self.process_listeners(ListenerType.chunk, guild, len(members)) + def parse_webhooks_update(self, data): + channel = self.get_channel(int(data["channel_id"])) + self.dispatch("webhooks_update", channel) + def parse_voice_state_update(self, data): guild = self._get_guild(utils._get_as_snowflake(data, 'guild_id')) channel_id = utils._get_as_snowflake(data, 'channel_id') diff --git a/docs/api.rst b/docs/api.rst index d1a5a3460..2695788f4 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -380,6 +380,12 @@ to handle it, which defaults to print a traceback and ignoring the exception. :param last_pin: A ``datetime.datetime`` object representing when the latest message was pinned or ``None`` if there are no pins. +.. function:: on_webhooks_update(channel) + + Called whenever a webhook is created, modified, or removed from a guild channel. + + :param channel: The :class:`abc.GuildChannel` that had it's webhooks updated. + .. function:: on_member_join(member) on_member_remove(member)