Compare commits
3 Commits
962f800d2e
...
d2950106ec
Author | SHA1 | Date |
---|---|---|
|
d2950106ec | |
|
f304242eb4 | |
|
9f59578275 |
|
@ -613,6 +613,6 @@ class AudioContentService(
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getContentRankingSortTypeList(): List<String> {
|
fun getContentRankingSortTypeList(): List<String> {
|
||||||
return listOf("매출", "후원", "댓글", "좋아요")
|
return listOf("매출", "댓글", "좋아요")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,8 +58,8 @@ class RouletteService(
|
||||||
throw SodaException("룰렛 금액은 최소 5캔 입니다.")
|
throw SodaException("룰렛 금액은 최소 5캔 입니다.")
|
||||||
}
|
}
|
||||||
|
|
||||||
if (request.items.size < 2 || request.items.size > 6) {
|
if (request.items.size < 2 || request.items.size > 10) {
|
||||||
throw SodaException("룰렛 옵션은 최소 2개, 최대 6개까지 설정할 수 있습니다.")
|
throw SodaException("룰렛 옵션은 최소 2개, 최대 10개까지 설정할 수 있습니다.")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue