import { WEBUI_API_BASE_URL } from '$lib/constants'; export const updateUserRole = async (token: string, id: string, role: string) => { let error = null; const res = await fetch(`${WEBUI_API_BASE_URL}/users/update/role`, { method: 'POST', headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${token}` }, body: JSON.stringify({ id: id, role: role }) }) .then(async (res) => { if (!res.ok) throw await res.json(); return res.json(); }) .catch((err) => { console.log(err); error = err.detail; return null; }); if (error) { throw error; } return res; }; export const getUsers = async (token: string) => { let error = null; const res = await fetch(`${WEBUI_API_BASE_URL}/users/`, { method: 'GET', headers: { 'Content-Type': 'application/json', Authorization: `Bearer ${token}` } }) .then(async (res) => { if (!res.ok) throw await res.json(); return res.json(); }) .catch((error) => { console.log(error); return null; }); if (error) { throw error; } return res ? res : []; };