From daf24eceab4a105c1285b5e6ee51e4f24fc3349f Mon Sep 17 00:00:00 2001 From: hobiJeong Date: Mon, 23 Oct 2023 16:29:24 +0900 Subject: [PATCH] =?UTF-8?q?fix(#60):=20Dto=EC=97=90=EC=84=9C=20=3F?= =?UTF-8?q?=EB=A5=BC=20=EB=B6=99=EC=9D=BC=20=EC=8B=9C=20Service=EC=97=90?= =?UTF-8?q?=20=EC=BD=94=EB=93=9C=EB=A5=BC=20=EB=84=98=EA=B2=A8=EC=A4=84=20?= =?UTF-8?q?=EB=95=8C=20=EC=98=A4=EB=A5=98=EA=B0=80=20=EC=83=9D=EA=B2=A8?= =?UTF-8?q?=EC=84=9C=20=3F=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/chat/dto/post-chat.dto.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/chat/dto/post-chat.dto.ts b/src/chat/dto/post-chat.dto.ts index 06d0b30..3401d09 100644 --- a/src/chat/dto/post-chat.dto.ts +++ b/src/chat/dto/post-chat.dto.ts @@ -28,7 +28,7 @@ export class PostChatDto { }) @IsString() @IsOptional() - content?: string; + content: string; @ApiProperty({ example: '1', @@ -50,5 +50,5 @@ export class PostChatDto { description: 'FormData. 이미지 파일', }) @IsOptional() - imageUrl?: FormData; + imageUrl: FormData; }