WIP: Refactor Aurora (3.0.0) #29

Draft
cswimr wants to merge 347 commits from aurora-pydantic into main
Showing only changes of commit 71840cc148 - Show all commits

View file

@ -320,9 +320,9 @@ class Moderation(AuroraGuildModel):
if types: if types:
if 'all' in types: if 'all' in types:
types = type_registry.keys() types = type_registry.keys()
logger.debug("Getting all types: %s", types)
conditions.append(f"moderation_type IN ({', '.join(['?' for _ in types])})") conditions.append(f"moderation_type IN ({', '.join(['?' for _ in types])})")
for t in types: params.extend([t.key for t in types])
params.append(t)
if before: if before:
conditions.append("timestamp < ?") conditions.append("timestamp < ?")
params.append(int(before.timestamp())) params.append(int(before.timestamp()))