mark account as deactivated before leaving rooms
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
2e31bcc213
commit
91519959ed
1 changed files with 3 additions and 3 deletions
|
@ -547,12 +547,12 @@ pub(crate) async fn deactivate_route(
|
|||
return Err(Error::BadRequest(ErrorKind::NotJson, "Not json."));
|
||||
}
|
||||
|
||||
// Make the user leave all rooms before deactivation
|
||||
super::leave_all_rooms(sender_user).await;
|
||||
|
||||
// Remove devices and mark account as deactivated
|
||||
services().users.deactivate_account(sender_user)?;
|
||||
|
||||
// Make the user leave all rooms before deactivation
|
||||
super::leave_all_rooms(sender_user).await;
|
||||
|
||||
info!("User {sender_user} deactivated their account.");
|
||||
services()
|
||||
.admin
|
||||
|
|
Loading…
Add table
Reference in a new issue