forked from rDrama/rDrama
1
0
Fork 0

disallow mods from kicking other mods

master
Aevann 2023-08-10 13:17:27 +03:00
parent ae728b9434
commit 8ba3178c1c
1 changed files with 3 additions and 0 deletions

View File

@ -185,6 +185,9 @@ def group_reject(v, group_name, user_id):
if not membership:
abort(404, "There is no membership to reject!")
if v.id != group.owner.id and membership.is_mod:
abort(403, "Only the group owner can kick mods!")
if v.id == membership.user_id:
msg = f"You have left !{group} successfully!"
else: