Files
lotteryAdmin/src/app/admin/(shell)/draws/[drawId]/risk/hot/page.tsx
kang cbc499e5b2 feat(api, agents): add agent node profile retrieval and update functionality
Implemented new API functions to fetch and update agent node profiles, enhancing the management capabilities for agent data. This addition improves the overall functionality of the admin agents console, allowing for better user interaction with agent profiles. Updated related types for improved type safety and clarity in the codebase.
2026-06-04 09:17:55 +08:00

10 lines
338 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { redirect } from "next/navigation";
/** 兼容旧链接:热门号码已并入风险池 Tab筛选 >80%)。 */
export default async function AdminDrawRiskHotPage(props: {
params: Promise<{ drawId: string }>;
}) {
const { drawId } = await props.params;
redirect(`/admin/draws/${drawId}/risk/pools?filter=high_risk`);
}