Files
filebrozer/frontend/src/api/settings.ts
kloon15 5100e587d7 feat: migrate to vue 3 (#2689)
---------

Co-authored-by: Joep <jcbuhre@gmail.com>
Co-authored-by: Omar Hussein <omarmohammad1951@gmail.com>
Co-authored-by: Oleg Lobanov <oleg@lobanov.me>
2024-04-01 17:18:22 +02:00

13 lines
278 B
TypeScript

import { fetchURL, fetchJSON } from "./utils";
export function get() {
return fetchJSON<ISettings>(`/api/settings`, {});
}
export async function update(settings: ISettings) {
await fetchURL(`/api/settings`, {
method: "PUT",
body: JSON.stringify(settings),
});
}