move utils files

This commit is contained in:
2025-12-17 14:16:08 +01:00
parent 883b9b6c4b
commit 0aaafed26a
13 changed files with 58 additions and 9 deletions
+22
View File
@@ -0,0 +1,22 @@
export default async function searchUsers(query) {
try {
const encodedQuery = encodeURIComponent(query);
const response = await fetch(
`http://localhost:80/api/users/search?query=${encodedQuery}`,
{
method: 'GET',
credentials: 'include',
headers: {
'Content-Type': 'application/json',
'Accept': 'application/json'
}
}
);
const data = await response.json();
return data.hits.map(hit => hit.document);
} catch (err) {
console.error("Erreur :", err);
return null;
}
}