mirror of
https://github.com/open-webui/open-webui
synced 2024-11-08 01:30:40 +00:00
59 lines
1.1 KiB
TypeScript
59 lines
1.1 KiB
TypeScript
|
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((error) => {
|
||
|
console.log(error);
|
||
|
error = error.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 : [];
|
||
|
};
|