This commit is contained in:
Mateusz Gruszczyński
2026-04-07 10:06:48 +02:00
parent deaa6dfe43
commit ca9c78d88d
36 changed files with 1801 additions and 503 deletions

View File

@@ -29,6 +29,9 @@ export class User {
@Column({ type: 'varchar', length: 8, default: 'PLN' })
defaultCurrency!: string;
@Column({ type: 'boolean', default: false })
integrationsEnabled!: boolean;
@Column({ type: 'simple-json', nullable: true })
reportPreferences!: {
enabled?: boolean;