Create missing stubs

This commit is contained in:
Owen
2025-10-27 13:45:24 -07:00
parent 3c5fe21078
commit a38cb961c7
4 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
export async function cleanUpOldLogs(orgId: string, retentionDays: number) {
return;
}
export async function logAccessAudit(data: {
action: boolean;
type: string;
orgId: string;
resourceId?: number;
user?: { username: string; userId: string };
apiKey?: { name: string | null; apiKeyId: string };
metadata?: any;
userAgent?: string;
requestIp?: string;
}) {
return;
}