From 91f4af6e9a3a5d770f98d4a5b75c729c18861cc1 Mon Sep 17 00:00:00 2001
From: Marvin Borner
Date: Thu, 1 Oct 2020 17:33:08 +0200
Subject: Some thingies
---
quotes/public/script.js | 17 ++++-------------
1 file changed, 4 insertions(+), 13 deletions(-)
(limited to 'quotes/public/script.js')
diff --git a/quotes/public/script.js b/quotes/public/script.js
index 3fbc676..7a87486 100644
--- a/quotes/public/script.js
+++ b/quotes/public/script.js
@@ -6,7 +6,7 @@ function append(response) {
response.forEach((elem) => {
dropdown.insertAdjacentHTML(
"beforeend",
- ``
);
@@ -14,15 +14,6 @@ function append(response) {
}
// TODO: Add api list endpoint
-// fetch("/auth/api/list")
-// .then((response) => response.json())
-// .then((response) => append(response));
-
-const exampleJson = [
- { id: 1, name: "Lars", middlename: null, surname: "Baum" },
- { id: 2, name: "Marvin", middlename: null, surname: "Giraffe" },
- { id: 3, name: "Dominik", middlename: null, surname: "Apfel" },
- { id: 4, name: "Daniel", middlename: null, surname: "Torte" },
-];
-
-append(exampleJson);
+fetch("/auth/api/list")
+ .then((response) => response.json())
+ .then((response) => append(response));
--
cgit v1.2.3