From 99508233778e29d41248cd233b2e58a92f4020b8 Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Thu, 27 May 2021 17:26:34 -0500 Subject: Profile customization (#46) * 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 * change mainSiteUrl --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/index.ts b/src/index.ts index 3d6bf6f..0937e4e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,7 +9,7 @@ const app = express() export const debug = false -const mainSiteUrl = 'http://localhost:8081' +const mainSiteUrl = 'https://skyblock.matdoes.dev' // 200 requests over 5 minutes const limiter = rateLimit({ -- cgit