Basic request log working

This commit is contained in:
Owen
2025-10-22 12:23:48 -07:00
parent fdd4d5244f
commit f748c5dbe4
16 changed files with 793 additions and 52 deletions

View File

@@ -190,7 +190,7 @@ export default function GeneralPage() {
const epoch = Math.floor(Date.now() / 1000);
link.setAttribute(
"download",
`access_audit_logs_${orgId}_${epoch}.csv`
`access-audit-logs-${orgId}-${epoch}.csv`
);
document.body.appendChild(link);
link.click();
@@ -274,8 +274,8 @@ export default function GeneralPage() {
<LogDataTable
columns={columns}
data={rows}
persistPageSize="access-logs-table"
title={t("accessLogs")}
persistPageSize="action-logs-table"
title={t("actionLogs")}
searchPlaceholder={t("searchLogs")}
searchColumn="action"
onRefresh={refreshData}