diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/utils/moderation.py | 12 | 
1 files changed, 9 insertions, 3 deletions
| diff --git a/bot/utils/moderation.py b/bot/utils/moderation.py index fcdf3c4d5..c1eb98dd6 100644 --- a/bot/utils/moderation.py +++ b/bot/utils/moderation.py @@ -14,8 +14,13 @@ HEADERS = {"X-API-KEY": Keys.site_api}  async def post_infraction( -    ctx: Context, user: Union[Member, Object, User], -    type: str, reason: str, expires_at: datetime = None, hidden: bool = False +    ctx: Context, +    user: Union[Member, Object, User], +    type: str, +    reason: str, +    expires_at: datetime = None, +    hidden: bool = False, +    active: bool = True,  ):      payload = { @@ -23,7 +28,8 @@ async def post_infraction(          "hidden": hidden,          "reason": reason,          "type": type, -        "user": user.id +        "user": user.id, +        "active": active      }      if expires_at:          payload['expires_at'] = expires_at.isoformat() | 
