Audit URLs in USOS
Based on the codebase analysis, here are all the audit-related URLs:
1. Audit Logs(Compliance & Governance)
- URL:
/dashboard/audit-logs - Purpose: View all system activities for compliance and governance
- File:
app/dashboard/audit-logs/page.tsx - Accessible to: Principal, Administrators
- Features: Review system activity logs, filter by user role/action/module/date, investigate suspicious activities, export logs
2. Audit & Inspections(Regulatory Compliance)
- URL:
/dashboard/audit-inspections - Purpose: Track regulatory inspections and compliance audits
- File:
app/dashboard/audit-inspections/page.tsx - Accessible to: Principal only
- Features: Manage external audits, inspections, compliance reviews
Navigation Access
- Audit Logs appears in the main sidebar under "Compliance & Governance" section (line 270)
- Audit & Inspections appears conditionally for Principal users only (line 280)
Both pages have loading.tsx files for proper Suspense boundary handling.