style: apply cargo fmt

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jan Wiebe
2026-02-21 20:33:54 +01:00
parent 3e0813b480
commit 628f4d6b6a
+1 -4
View File
@@ -30,10 +30,7 @@ impl From<User> for UserDto {
updated_at: user.updated_at(),
last_login_at: user.last_login_at(),
active: user.is_active(),
auth_provider: user
.oidc_provider()
.unwrap_or("local")
.to_string(),
auth_provider: user.oidc_provider().unwrap_or("local").to_string(),
}
}
}