fix(server): correct person birth date across timezones (#11369)

* fix(server): correct person birth date across timezones

* fix test

* update e2e tests

* use Optional decorator
This commit is contained in:
Michel Heusschen
2024-07-30 01:52:04 +02:00
committed by GitHub
parent ebc71e428d
commit 434bcec5cc
7 changed files with 132 additions and 18 deletions

View File

@@ -33,7 +33,7 @@ export class PersonEntity {
name!: string;
@Column({ type: 'date', nullable: true })
birthDate!: Date | null;
birthDate!: string | null;
@Column({ default: '' })
thumbnailPath!: string;