From 070cb689d3ed6b5a799831355e87eaae5d1cffbe Mon Sep 17 00:00:00 2001 From: Andrei Date: Thu, 10 Aug 2017 16:02:45 -0700 Subject: [PATCH] [audit-log] add Guild.audit_log_iter for constructing iterator --- disco/types/guild.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/disco/types/guild.py b/disco/types/guild.py index bacb2e5..a19adc0 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -474,10 +474,14 @@ class Guild(SlottedModel, Permissible): @property def audit_log(self): + return self.audit_log_iter() + + def audit_log_iter(self, **kwargs): return Paginator( self.client.api.guilds_auditlogs_list, 'before', self.id, + **kwargs ) def get_audit_log_entries(self, *args, **kwargs):