mirror of
https://forgejo.ellis.link/continuwuation/continuwuity.git
synced 2025-09-12 12:13:57 +02:00
feat: Prevent suspended users performing room changes
Prevents kicks, bans, unbans, and alias modification
This commit is contained in:
parent
d0548ec064
commit
90180916eb
3 changed files with 23 additions and 2 deletions
|
@ -128,6 +128,9 @@ pub(crate) async fn set_room_visibility_route(
|
|||
// Return 404 if the room doesn't exist
|
||||
return Err!(Request(NotFound("Room not found")));
|
||||
}
|
||||
if services.users.is_suspended(sender_user).await? {
|
||||
return Err!(Request(UserSuspended("You cannot perform this action while suspended.")));
|
||||
}
|
||||
|
||||
if services
|
||||
.users
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue