WIP: Refactor Aurora (3.0.0) #29

Draft
cswimr wants to merge 342 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 'all' in types:
types = type_registry.keys()
logger.debug("Getting all types: %s", types)
conditions.append(f"moderation_type IN ({', '.join(['?' for _ in types])})")
for t in types:
params.append(t)
params.extend([t.key for t in types])
if before:
conditions.append("timestamp < ?")
params.append(int(before.timestamp()))