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."));
|
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
|
// Remove devices and mark account as deactivated
|
||||||
services().users.deactivate_account(sender_user)?;
|
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.");
|
info!("User {sender_user} deactivated their account.");
|
||||||
services()
|
services()
|
||||||
.admin
|
.admin
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue