WIP: Moderation type registry #26

Closed
cswimr wants to merge 146 commits from aurora-3rd-party into main
Showing only changes of commit 25d7101cb5 - Show all commits

View file

@ -59,8 +59,8 @@ class Moderation(BaseModel):
"resolved_by": result[11],
"resolve_reason": result[12],
"expired": bool(result[13]),
"changes": json.loads(result[14]) if result[14] else [],
"metadata": json.loads(result[15]) if result[15] else {},
"changes": result[14] if result[14] else [],
"metadata": result[15] if result[15] else {},
}
cursor.close()