feat(chat-quota): 30캔으로 충전시 유료 채팅 횟수

- 50 -> 40으로 변경
This commit is contained in:
Klaus 2025-08-28 00:22:15 +09:00
parent 0b54b126db
commit df93f0e0ce
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ class ChatQuotaController(
container = request.container
)
// 유료 횟수 적립 (기본 50)
val add = 50
// 유료 횟수 적립 (기본 40)
val add = 40
chatQuotaService.purchase(member.id!!, add)
val s = chatQuotaService.getStatus(member.id!!)