From 271bef093cc48f9bbccec830d73a78ed965d0e7d Mon Sep 17 00:00:00 2001 From: Denys Konovalov Date: Sat, 30 Sep 2023 16:32:22 +0200 Subject: [PATCH] static/admin/index.html aktualisiert --- static/admin/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/admin/index.html b/static/admin/index.html index d35cab1e..02378873 100644 --- a/static/admin/index.html +++ b/static/admin/index.html @@ -182,7 +182,7 @@ // access control CMS.registerEventListener({ name: "login", - handler: ({ login }) => { + handler: ({ author: { login, name } }) => { const adminUsers = [ "Tramus00", "denyskon", @@ -191,7 +191,7 @@ "cschapitz", "bgorsler", ]; - if (login && !adminUsers.includes(login)) { + if (author.login && !adminUsers.includes(author.login)) { alert( "Sie sind nicht berechtigt, diese Seite aufzurufen. Sie werden nun auf die Startseite weitergeleitet." );