룰렛 아이템 개수 수정

AS-IS : 최대 6개
TO-BE : 최대 10개
This commit is contained in:
Klaus 2023-12-26 14:52:35 +09:00
parent 4a83ebd472
commit 9f59578275
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ class RouletteService(
throw SodaException("룰렛 금액은 최소 5캔 입니다.")
}
if (request.items.size < 2 || request.items.size > 6) {
throw SodaException("룰렛 옵션은 최소 2개, 최대 6개까지 설정할 수 있습니다.")
if (request.items.size < 2 || request.items.size > 10) {
throw SodaException("룰렛 옵션은 최소 2개, 최대 10개까지 설정할 수 있습니다.")
}
}