From 153a18aaf585c459213d621f8869de2acf5f1e68 Mon Sep 17 00:00:00 2001 From: LarsVomMars Date: Fri, 29 Jan 2021 19:13:45 +0100 Subject: Admin only profile preview --- profile/public/user.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'profile/public/user.js') diff --git a/profile/public/user.js b/profile/public/user.js index 936118e..84c4858 100644 --- a/profile/public/user.js +++ b/profile/public/user.js @@ -5,7 +5,12 @@ const charDiv = document.getElementById("char"); if (uid < 1 || uid > 119) window.location.assign("./users.html"); // Well -function addUser(userData) { +async function addUser(userData) { + const resp = await (await fetch("/auth/api/status")).json(); + if (!resp.admin) { + userDiv.style.display = "none"; + return; + } const divs = []; const questions = userData.questions; const user = userData.user; -- cgit v1.2.3