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

@@ -34,6 +34,9 @@ export class EmailLog {
@Column({type: 'boolean'})
success: boolean;
@Column({type: 'text', default: null})
context: boolean;
@AfterLoad()
setType() {
this.eventName = EmailEvent[this.type]

View File

@@ -20,6 +20,9 @@ export class UserSettings {
@Column({ name: 'send_system_update_notification', default: true, type: 'boolean'})
sendSystemUpdateMails: boolean;
@Column({ name: 'ui_scale', default: 'm' })
uiScale: 's' | 'm' | 'l';
}