feat(platform): add audit logs and activity feed
This commit is contained in:
parent
92cb8d1286
commit
c816e9869d
34 changed files with 1592 additions and 43 deletions
7
frontend/athena/app/api/audit-logs/route.ts
Normal file
7
frontend/athena/app/api/audit-logs/route.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
import { NextRequest } from "next/server";
|
||||
|
||||
import { proxyHermesRequest } from "@/lib/server/hermes-proxy";
|
||||
|
||||
export async function GET(request: NextRequest) {
|
||||
return proxyHermesRequest(request, `/audit-logs${request.nextUrl.search}`);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue