Merge pull request #320 from EdouardVanbelle/feat/client_ip

This commit is contained in:
Dionisio Pozo
2026-05-08 23:55:41 +02:00
committed by GitHub
9 changed files with 380 additions and 57 deletions
@@ -43,7 +43,11 @@ pub async fn get_favorites(
match favorites_service.get_favorites(user_id).await {
Ok(favorites) => {
info!("Retrieved {} favorites for user", favorites.len());
info!(
"Retrieved {} favorites for user {}",
favorites.len(),
auth_user.id
);
(StatusCode::OK, Json(serde_json::json!(favorites))).into_response()
}
Err(err) => {