feat: update customer profile picture and notifications settings

This commit is contained in:
Abdalhamid Alhamad
2024-12-12 13:15:47 +03:00
parent 4867a5f858
commit 51fa61dbc6
28 changed files with 150 additions and 135 deletions

View File

@ -18,19 +18,11 @@ export class DocumentMetaResponseDto {
@ApiProperty({ type: String })
url!: string | null;
@ApiProperty()
createdAt!: Date;
@ApiProperty()
updatedAt!: Date;
constructor(document: Document) {
this.id = document.id;
this.name = document.name;
this.extension = document.extension;
this.documentType = document.documentType;
this.url = document.url || null;
this.createdAt = document.createdAt;
this.updatedAt = document.updatedAt;
}
}