chore: fmt

This commit is contained in:
Jared L
2026-01-21 07:28:12 +11:00
parent a91b01f9a2
commit 0f547115af
11 changed files with 193 additions and 181 deletions

View File

@@ -130,8 +130,9 @@ pub(super) async fn reset_password(&self, username: String, password: Option<Str
.await
{
| Err(e) => return Err!("Couldn't reset the password for user {user_id}: {e}"),
| Ok(()) =>
write!(self, "Successfully reset the password for user {user_id}: `{new_password}`"),
| Ok(()) => {
write!(self, "Successfully reset the password for user {user_id}: `{new_password}`")
},
}
.await
}