Add admin truth history dashboard and training data ops views

This commit is contained in:
2569718930@qq.com
2026-04-03 01:27:54 +08:00
parent 781c247952
commit bbdba2540c
7 changed files with 1160 additions and 10 deletions
+13
View File
@@ -0,0 +1,13 @@
import type { Metadata } from "next";
import { TruthHistoryDashboard } from "@/components/ops/TruthHistoryDashboard";
import { requireOpsAdmin } from "@/lib/ops-admin";
export const metadata: Metadata = {
title: "PolyWeather Truth History",
description: "Admin truth history viewer for PolyWeather.",
};
export default async function TruthHistoryPage() {
await requireOpsAdmin("/ops/truth-history");
return <TruthHistoryDashboard />;
}