[O] Let's assume everyone found their keys

pull/111/head
Azalea 2025-01-17 20:44:51 -05:00
parent 43582f0528
commit b178d7fd8d
1 changed files with 4 additions and 1 deletions

View File

@ -191,7 +191,10 @@ fun Maimai2ServletController.initApis() {
"GetGameKaleidxScope" static { mapOf("gameKaleidxScopeList" to ls(
mapOf("gateId" to 1, "phaseId" to 1),
)) }
"GetUserKaleidxScope".unpaged { db.userKaleidx.findByUser_Card_ExtId(uid) }
"GetUserKaleidxScope".unpaged {
db.userKaleidx.findByUser_Card_ExtId(uid)
.mapApply { isKeyFound = true }
}
// Added on 1.50
"GetUserNewItemList" { mapOf("userId" to uid, "userItemList" to empty) }