- PATCH /api/v1/me: self-service profile update (name, phone, timezone) - User settings page with profile editor + notification preferences - Audit log API with filtering (entity, action, user, date range) - Audit log page with search, entity type, and action filters - Berth create/delete: POST /api/v1/berths + DELETE /api/v1/berths/[id] - Client duplicates endpoint: GET /api/v1/clients/duplicates?name= - Replace settings and audit stub pages with real implementations Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
import { AuditLogList } from '@/components/admin/audit/audit-log-list';
|
|
|
|
export default function AuditLogPage() {
|
|
return <AuditLogList />;
|
|
}
|