Ag Grid anpassungen

This commit is contained in:
Bastian Wagner
2026-02-19 12:21:30 +01:00
parent d7cfc89ba5
commit ef45e91141
31 changed files with 469 additions and 75 deletions

View File

@@ -19,11 +19,12 @@ export class LogService {
private async logEmail(data: EmailLogDto) {
const log = this.emailLogRepo.create(data);
console.log(log)
const logEntry = await this.emailLogRepo.save(log);
}
private async logAuthEvent(data: User) {
console.error("auth logging not implemented")
// console.error("auth logging not implemented")
}
}
@@ -34,7 +35,8 @@ export enum LogType {
export enum EmailEvent {
GrantSystemAccess,
RemoveSystemAccess
RemoveSystemAccess,
KeyHandout
}
export interface EmailLogDto {