ваше сообщение коммита

This commit is contained in:
2025-06-19 15:24:27 +03:00
parent 75e845b5af
commit 90a088e021
25 changed files with 905 additions and 356 deletions

View File

@@ -29,4 +29,13 @@ export default {
}
return null;
}
};
};
export async function getContacts() {
const res = await fetch('/api/users');
const data = await res.json();
if (data && data.success) {
return data.contacts;
}
return [];
}