feat(redirect): /system/mitm-proxy now points to /tools/agent-bridge (F7)

Update the old MITM proxy page redirect from /dashboard/system/proxy
to /dashboard/tools/agent-bridge per plan 11 acceptance criterion.
This commit is contained in:
diegosouzapw
2026-05-28 01:39:30 -03:00
parent 91e3d9c965
commit dcb9685aa8

View File

@@ -1,6 +1,9 @@
import { redirect } from "next/navigation";
/**
* MITM Proxy page — moved to AgentBridge (plan 11).
* Redirects to the new location at /dashboard/tools/agent-bridge.
*/
export default function MitmProxyPage() {
// MITM Proxy será movido para Tools/AgentBridge (plano 11)
redirect("/dashboard/system/proxy");
redirect("/dashboard/tools/agent-bridge");
}