<?php
// TruTrak is now map-first.
// Live Devices has been merged into Management → Dashboard.
require_once __DIR__ . '/../../bootstrap.php';
requirePermission('trutrak.view');
$qs = $_SERVER['QUERY_STRING'] ?? '';
$to = app_url('trutrak/map') . ($qs ? ('?' . $qs) : '');
header('Location: ' . $to, true, 302);
exit;