Skip to content

Commit 384a876

Browse files
authored
Merge pull request #241 from boostcampwm-2024/test/stress--test-end
fix: 부하 테스트 완료
2 parents 1de9611 + 1e55b1a commit 384a876

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/backend/src/quiz-zone/dto/create-quiz-zone.dto.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class CreateQuizZoneDto {
2424

2525
@IsInt({ message: '최대 플레이어 수가 없습니다.' })
2626
@Min(1, { message: '최소 1명 이상이어야 합니다.' })
27-
// @Max(300, { message: '최대 300명까지 가능합니다.' })
27+
@Max(300, { message: '최대 300명까지 가능합니다.' })
2828
readonly limitPlayerCount: number;
2929

3030
@IsNotEmpty({ message: '퀴즈존을 선택해주세요.' })

apps/frontend/src/utils/validators.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,5 @@ export const validateQuizZoneSetCode = (code: string) => {
4444
//입장 인원 제한 유효성 검사
4545
export const validateQuizZoneSetLimit = (limit: number) => {
4646
if (limit < 1) return '최소 1명 이상 지정해주세요.';
47-
// if (limit > 300) return '최대 인원은 300명입니다.';
47+
if (limit > 300) return '최대 인원은 300명입니다.';
4848
};

0 commit comments

Comments
 (0)