fix: Type ProfileAvatar string | null
All checks were successful
Build & Deploy on Dev / build (push) Successful in 1m20s

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-01-30 16:15:26 +07:00
parent 633ccd4906
commit 109caf7a0d
5 changed files with 12 additions and 20 deletions

View file

@ -46,14 +46,14 @@ export class ProfileEmployee extends EntityBase {
comment: "รูปถ่าย",
default: null,
})
avatar: string;
avatar: string | null;
@Column({
nullable: true,
comment: "รูปถ่าย",
default: null,
})
avatarName: string;
avatarName: string | null;
@Column({
nullable: true,
@ -693,13 +693,13 @@ export class ProfileEmployee extends EntityBase {
default: false,
})
privacyCheckin: boolean;
@Column({
comment: "สถานะยืนยัน privacyUser",
default: false,
})
privacyUser: boolean;
@Column({
comment: "สถานะยืนยัน privacyMgt",
default: false,