newStaffLDB-API #48

Merged
fred.boniface merged 85 commits from newStaffLDB-API into main 2023-10-03 21:35:03 +01:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit 400a668267 - Show all commits

View File

@ -26,8 +26,9 @@ async function sendToGitea(body) {
method: "POST",
headers: {
Authorization: key,
"Content-Type": "application/json",
},
body: body,
body: JSON.stringify(body),
};
const res = await fetch(url, opts);