1
0
Fork 0

Stubbed Team Course functions as they do not currently do anything

This commit is contained in:
EmmyHeart 2023-10-20 03:31:36 +00:00
parent 32903d979e
commit 21cb37001b
1 changed files with 16 additions and 0 deletions

View File

@ -722,6 +722,14 @@ class ChuniBase:
},
}
def handle_get_team_course_setting_api_request(self, data: Dict) -> Dict:
return {
"userId": data["userId"],
"length": 0,
"nextIndex": -1,
"teamCourseSettingList": [],
}
def handle_get_team_course_setting_api_request_proto(self, data: Dict) -> Dict:
return {
"userId": data["userId"],
"length": 1,
@ -746,6 +754,14 @@ class ChuniBase:
}
def handle_get_team_course_rule_api_request(self, data: Dict) -> Dict:
return {
"userId": data["userId"],
"length": 0,
"nextIndex": -1,
"teamCourseRuleList": []
}
def handle_get_team_course_rule_api_request_proto(self, data: Dict) -> Dict:
return {
"userId": data["userId"],
"length": 1,