docs: record staging controller blocker

This commit is contained in:
Jesse
2026-07-28 10:24:31 +08:00
parent 218cee579e
commit f950bfd8da
3 changed files with 10 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
import { NextResponse } from "next/server";
export function GET(request: Request) {
return NextResponse.redirect(new URL("/admin/codes", request.url));
}