fix(admin): fresh SSR reads, atomic user delete + sanitized errors, cookie-rotation in middleware, no-store on admin APIs

This commit is contained in:
Gerhard Scheikl
2026-05-31 13:15:56 +02:00
parent 61bf6c013c
commit 535b2ef202
23 changed files with 180 additions and 95 deletions
+1
View File
@@ -7,6 +7,7 @@ import { formatBytes, formatDate } from '@/lib/format';
import { UserActions } from './user-actions';
export const dynamic = 'force-dynamic';
export const revalidate = 0;
type TunnelRow = {
subdomain: string;
+1
View File
@@ -2,6 +2,7 @@ import { getUsersList } from '@/lib/admin/list';
import { UsersTable } from './users-table';
export const dynamic = 'force-dynamic';
export const revalidate = 0;
const PER_PAGE = 25;