From 3a492ca7a9d3c9ebcb010911f1ccc0fb06f70aa4 Mon Sep 17 00:00:00 2001 From: ndaemy Date: Sun, 3 Sep 2023 23:01:22 +0900 Subject: [PATCH] =?UTF-8?q?fix:=2024:00=20=EC=9D=B4=20=EC=84=A0=ED=83=9D?= =?UTF-8?q?=EC=A7=80=EA=B0=80=20=EB=90=98=EC=A7=80=20=EC=95=8A=EB=8D=98=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=20=ED=94=BD=EC=8A=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/rooms/dto/create-room.dto.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/rooms/dto/create-room.dto.ts b/src/api/rooms/dto/create-room.dto.ts index 484cfa1..28aaaf2 100644 --- a/src/api/rooms/dto/create-room.dto.ts +++ b/src/api/rooms/dto/create-room.dto.ts @@ -11,10 +11,10 @@ export class CreateRoomDto { dateOnly?: boolean; @IsOptional() - @Matches(/^([01]\d|2[0-3]):([0-5]\d)$/) + @Matches(/^([01]\d|2[0-4]):([0-5]\d)$/) startTime?: string; @IsOptional() - @Matches(/^([01]\d|2[0-3]):([0-5]\d)$/) + @Matches(/^([01]\d|2[0-4]):([0-5]\d)$/) endTime?: string; }