|
|
@ -11,7 +11,7 @@ from disco.util.logging import LoggingClass |
|
|
|
from disco.util.sanitize import S |
|
|
|
from disco.types.user import User |
|
|
|
from disco.types.message import Message |
|
|
|
from disco.types.guild import Guild, GuildMember, GuildBan, Role, GuildEmoji, AuditLogEntry |
|
|
|
from disco.types.guild import Guild, GuildMember, GuildBan, PruneCount, Role, GuildEmoji, AuditLogEntry |
|
|
|
from disco.types.channel import Channel |
|
|
|
from disco.types.invite import Invite |
|
|
|
from disco.types.voice import VoiceRegion |
|
|
@ -433,6 +433,17 @@ class APIClient(LoggingClass): |
|
|
|
dict(guild=guild, user=user), |
|
|
|
headers=_reason_header(reason)) |
|
|
|
|
|
|
|
def guilds_prune_count_get(self, guild, days=None): |
|
|
|
r = self.http(Routes.GUILDS_PRUNE_COUNT, dict(guild=guild), params=optional(days=days)) |
|
|
|
return PruneCount.create(self.client, r.json()) |
|
|
|
|
|
|
|
def guilds_prune(self, guild, days=None, compute_prune_count=None): |
|
|
|
r = self.http(Routes.GUILDS_PRUNE_BEGIN, dict(guild=guild), params=optional( |
|
|
|
days=days, |
|
|
|
compute_prune_count=compute_prune_count, |
|
|
|
)) |
|
|
|
return PruneCount.create(self.client, r.json()) |
|
|
|
|
|
|
|
def guilds_roles_list(self, guild): |
|
|
|
r = self.http(Routes.GUILDS_ROLES_LIST, dict(guild=guild)) |
|
|
|
return Role.create_map(self.client, r.json(), guild_id=guild) |
|
|
|