22 lines
586 B
JavaScript
22 lines
586 B
JavaScript
import axios from "axios";
|
|
import { useAuthStore } from "@/store/authStore";
|
|
|
|
const API_URL = "https://hopp.zikor.pl/api/v1";
|
|
|
|
export async function getUserById(userId) {
|
|
const { token } = useAuthStore.getState();
|
|
const headers = token ? { Authorization: `Bearer ${token}` } : {};
|
|
try {
|
|
const response = await axios.get(`${API_URL}/clients/get/${userId}`, {
|
|
headers: headers,
|
|
});
|
|
return response.data;
|
|
} catch (err) {
|
|
console.error(
|
|
`Nie udało się pobrać danych użytkownika o ID ${userId}.`,
|
|
err.response.status
|
|
);
|
|
throw err;
|
|
}
|
|
}
|