From 1bb000cc4c4b504f1f295dddb7094190af54f294 Mon Sep 17 00:00:00 2001 From: Greg Soucy Date: Tue, 26 May 2026 23:22:09 -0400 Subject: [PATCH] Restore admin claims dashboard route --- public/admin/claims.html | 82 ++++++++++++++++++++++++++++++++++++++++ vercel.json | 14 ++++++- 2 files changed, 94 insertions(+), 2 deletions(-) create mode 100644 public/admin/claims.html diff --git a/public/admin/claims.html b/public/admin/claims.html new file mode 100644 index 0000000..5721298 --- /dev/null +++ b/public/admin/claims.html @@ -0,0 +1,82 @@ + + + + + + CommandLayer Claims Admin + + + +
+

CommandLayer Claims Admin

Internal operator dashboard for claim review and activation pipeline.

+
+

Claims

Select a claim to review.

+
+ diff --git a/vercel.json b/vercel.json index 5c0ef8d..356a791 100644 --- a/vercel.json +++ b/vercel.json @@ -1,6 +1,16 @@ { "rewrites": [ - { "source": "/verify/r/:receipt_id", "destination": "/verify/r/index.html" }, - { "source": "/agent-cards/agents/v1.1.0/trust/:ens(.+).json", "destination": "/api/agent-cards/card?ens=:ens" } + { + "source": "/admin/claims", + "destination": "/admin/claims.html" + }, + { + "source": "/verify/r/:receipt_id", + "destination": "/verify/r/index.html" + }, + { + "source": "/agent-cards/agents/v1.1.0/trust/:ens(.+).json", + "destination": "/api/agent-cards/card?ens=:ens" + } ] }