From dcb9685aa84663b010f2ae8b5d089db2ac80c71e Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Thu, 28 May 2026 01:39:30 -0300 Subject: [PATCH] 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. --- src/app/(dashboard)/dashboard/system/mitm-proxy/page.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/(dashboard)/dashboard/system/mitm-proxy/page.tsx b/src/app/(dashboard)/dashboard/system/mitm-proxy/page.tsx index e617659751..b59c55710f 100644 --- a/src/app/(dashboard)/dashboard/system/mitm-proxy/page.tsx +++ b/src/app/(dashboard)/dashboard/system/mitm-proxy/page.tsx @@ -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"); }