static/admin/index.html aktualisiert
All checks were successful
website-main / prod-build (push) Successful in 47s
website-main / test-build (push) Successful in 27s

This commit is contained in:
Denys Konovalov 2023-09-30 16:32:22 +02:00
parent 8408ebf944
commit 271bef093c

@ -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."
);