1
0
mirror of synced 2024-11-12 01:20:51 +01:00

Add tokenCountDict and unlockedSongIDList into MyDonEntryController

This commit is contained in:
S-Sebb?? 2023-09-17 00:44:11 +08:00
parent 8a4fee9b04
commit fadbed54ae
2 changed files with 4 additions and 2 deletions

View File

@ -43,7 +43,9 @@ public class MyDonEntryController : BaseController<MyDonEntryController>
ToneFlgArray = "[]",
TitleFlgArray = "[]",
CostumeFlgArray = "[[],[],[],[],[]]",
GenericInfoFlgArray = "[]"
GenericInfoFlgArray = "[]",
TokenCountDict = "{}",
UnlockedSongIdList = "[]"
};
await userDatumService.InsertUserDatum(newUser);

View File

@ -126,7 +126,7 @@ public class UserDataController : BaseController<UserDataController>
IsSkipOn = userData.IsSkipOn,
IsChallengecompe = false,
SongRecentCnt = (uint)recentSongs.Length,
TotalCreditCnt = 99
TotalCreditCnt = 0
};
return Ok(response);