['can_manage_settings' => false]]; } try { $authorizationService = $container->get(AuthorizationService::class); $actorContext = ['actor_user_id' => $userId]; $canManageSettings = $authorizationService->authorize('helpdesk.settings.manage', $actorContext)->isAllowed(); $canViewTeam = $authorizationService->authorize('helpdesk.team-workload.view', $actorContext)->isAllowed(); $canViewRiskRadar = $authorizationService->authorize('helpdesk.risk-radar.view', $actorContext)->isAllowed(); $canManageSoftwareProducts = $authorizationService->authorize('helpdesk.software-products.manage', $actorContext)->isAllowed(); $canViewHandovers = $authorizationService->authorize('helpdesk.handovers.view', $actorContext)->isAllowed(); $canCreateHandovers = $authorizationService->authorize('helpdesk.handovers.create', $actorContext)->isAllowed(); $canManageHandovers = $authorizationService->authorize('helpdesk.handovers.manage', $actorContext)->isAllowed(); $canViewUpdates = $authorizationService->authorize('helpdesk.updates.view', $actorContext)->isAllowed(); } catch (\Throwable) { $canManageSettings = false; $canViewTeam = false; $canViewRiskRadar = false; $canManageSoftwareProducts = false; $canViewHandovers = false; $canCreateHandovers = false; $canManageHandovers = false; $canViewUpdates = false; } return ['helpdesk.nav' => [ 'can_view_dashboard' => true, 'can_manage_settings' => $canManageSettings, 'can_view_team' => $canViewTeam, 'can_view_risk_radar' => $canViewRiskRadar, 'can_manage_software_products' => $canManageSoftwareProducts, 'can_view_handovers' => $canViewHandovers, 'can_create_handovers' => $canCreateHandovers, 'can_manage_handovers' => $canManageHandovers, 'can_view_updates' => $canViewUpdates, ]]; } }