admin roadmap filter & search, user management, reopen rejected, system health

This commit is contained in:
2026-05-18 19:45:14 +07:00
parent c52b12daad
commit 6e02f2f0d7
36 changed files with 2013 additions and 339 deletions
+5
View File
@@ -10,3 +10,8 @@ export function isAdminEmail(email: string | null | undefined): boolean {
if (!email) return false;
return adminEmails().includes(email.toLowerCase());
}
/** Daftar email admin yang aman di-expose ke UI admin (dropdown filter). */
export function listAdminEmails(): string[] {
return adminEmails();
}