From c9097dc2d0749fa63fd731423bc87a5452f0444d Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Thu, 27 May 2021 16:56:50 -0500 Subject: Profile customization (#45) * add basic discord auth * add uuid dependency * add lastUpdated to sessions * add route to get session from id * add accounts collection * update build * add gm rank * add `customization` url parameter * add customization parameter to /player/:user * add route to get info from discord id * remove a console.log * Update database.js * Update package.json * fix tests --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/test.js b/test/test.js index fff3f15..ad86ff7 100644 --- a/test/test.js +++ b/test/test.js @@ -69,7 +69,7 @@ function resetState() { hypixelCached.usernameCache.flushAll() hypixelCached.basicProfilesCache.flushAll() hypixelCached.playerCache.flushAll() - hypixelCached.basicPlayerCache.flushAll() + hypixelCached.basicPlayerCache.reset() hypixelCached.profileCache.flushAll() hypixelCached.profileNameCache.flushAll() requestsSent = 0 -- cgit