Fix: HR/Personal darf Assets und FidoKeys lesen (Offboarding-Flow)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-11 11:36:01 +02:00
parent 26fc81ef11
commit b3be7ee06b

View File

@@ -64,14 +64,14 @@ function canModifyFidoKeys(req, res, next) {
* Check if user can view FIDO keys (all authenticated users) * Check if user can view FIDO keys (all authenticated users)
*/ */
function canViewFidoKeys(req, res, next) { function canViewFidoKeys(req, res, next) {
return requireRole([ROLES.SUPER_ADMIN, ROLES.ADMIN, ROLES.BEARBEITER, ROLES.BENUTZER])(req, res, next); return requireRole([ROLES.SUPER_ADMIN, ROLES.ADMIN, ROLES.BEARBEITER, ROLES.BENUTZER, ROLES.HR_PERSONAL, ROLES.SUPPORT])(req, res, next);
} }
/** /**
* Check if user can view assets (Super Admin, Admin, Bearbeiter) * Check if user can view assets (Super Admin, Admin, Bearbeiter)
*/ */
function canViewAssets(req, res, next) { function canViewAssets(req, res, next) {
return requireRole([ROLES.SUPER_ADMIN, ROLES.ADMIN, ROLES.TECHNIKER])(req, res, next); return requireRole([ROLES.SUPER_ADMIN, ROLES.ADMIN, ROLES.TECHNIKER, ROLES.HR_PERSONAL, ROLES.SUPPORT, ROLES.BEARBEITER])(req, res, next);
} }
/** /**