This commit is contained in:
Bastian Wagner
2026-07-17 15:34:42 +02:00
parent e89ac1481e
commit 5973658582
16 changed files with 768 additions and 11 deletions

View File

@@ -24,4 +24,8 @@ export class AuthService {
user: { username },
};
}
async logout(username: string, ipAddress?: string, userAgent?: string): Promise<void> {
await this.audit.record({ type: 'auth.logout_success', username, ipAddress, userAgent });
}
}