Compare commits

..

No commits in common. "82c0a60afae265ee975b5e911c6fa8753baadc11" and "fbe7b40f9b5c33b01c2555965251c041d94ce82e" have entirely different histories.

View File

@ -44,7 +44,6 @@ export const updateChallengeProgressController: RequestHandler = async (req, res
case "ChallengeProgress": case "ChallengeProgress":
case "SeasonChallengeCompletions": case "SeasonChallengeCompletions":
case "ChallengePTS": case "ChallengePTS":
case "crossPlaySetting":
break; break;
default: default:
logger.warn(`unknown challenge progress entry`, { key, value }); logger.warn(`unknown challenge progress entry`, { key, value });
@ -63,5 +62,4 @@ interface IUpdateChallengeProgressRequest {
ChallengeProgress?: IChallengeProgress[]; ChallengeProgress?: IChallengeProgress[];
SeasonChallengeHistory?: ISeasonChallenge[]; SeasonChallengeHistory?: ISeasonChallenge[];
SeasonChallengeCompletions?: ISeasonChallenge[]; SeasonChallengeCompletions?: ISeasonChallenge[];
crossPlaySetting?: string;
} }