blob: 7a87486a5d10cf94175864a9f852df93d9d40f6b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
const dropdown = document.getElementById("author");
dropdown.insertAdjacentHTML("beforeend", '<option selected="true" disabled>Author auswählen...</option>');
function append(response) {
response.forEach((elem) => {
dropdown.insertAdjacentHTML(
"beforeend",
`<option value="${elem["id"]}">${elem["name"]} ${elem["middlename"] ? elem["middlename"] : " "}${
elem["surname"]
}</option>`
);
});
}
// TODO: Add api list endpoint
fetch("/auth/api/list")
.then((response) => response.json())
.then((response) => append(response));
|