Saving changes
Rust Build / Rustfmt (pull_request) Successful in 51s
Rust Build / Check (pull_request) Successful in 1m29s
Rust Build / Test Suite (pull_request) Successful in 1m38s
Rust Build / Clippy (pull_request) Successful in 1m41s
Rust Build / build (pull_request) Successful in 1m35s

This commit is contained in:
2026-06-12 12:13:15 -04:00
parent 74b9f90f57
commit dfae1be2eb
3 changed files with 96 additions and 74 deletions
+2 -1
View File
@@ -117,7 +117,8 @@ pub mod user {
.bind(updated_hashed_password)
.bind(user.id)
.execute(pool)
.await {
.await
{
Ok(row) => {
if row.rows_affected() > 0 {
Ok(())
+2 -1
View File
@@ -167,7 +167,8 @@ pub async fn update_passphrase(
.bind(updated_hashed_passphrase)
.bind(user.id)
.execute(pool)
.await {
.await
{
Ok(row) => {
if row.rows_affected() > 0 {
Ok(())