WIP: Moderation type registry #26

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

View file

@ -229,8 +229,8 @@ class Moderation(AuroraGuildModel):
case_safe = case.copy()
case_safe.pop("guild_id")
case_safe["timestamp"] = case_safe["timestamp"].timestamp()
case_safe["end_timestamp"] = case_safe["end_timestamp"].timestamp() if case_safe["end_timestamp"] else None
case_safe["timestamp"] = int(case_safe["timestamp"].timestamp())
case_safe["end_timestamp"] = int(case_safe["end_timestamp"].timestamp()) if case_safe["end_timestamp"] else None
case_safe["duration"] = str(case_safe["duration"])
case_safe["resolved"] = int(case_safe["resolved"])
case_safe["expired"] = int(case_safe["expired"])