This commit is contained in:
2026-03-15 19:40:35 -05:00
parent 275c73b584
commit dcac4f135d
17 changed files with 659 additions and 318 deletions

View File

@@ -59,6 +59,8 @@ export interface AdminAuthSessionDto {
userEmail: string;
userName: string;
status: "ACTIVE" | "EXPIRED" | "REVOKED";
reviewState: "NORMAL" | "REVIEW";
reviewReasons: string[];
isCurrent: boolean;
createdAt: string;
lastSeenAt: string;
@@ -142,6 +144,7 @@ export interface AdminDiagnosticsDto {
userCount: number;
activeUserCount: number;
activeSessionCount: number;
reviewSessionCount: number;
roleCount: number;
permissionCount: number;
customerCount: number;