From 3fb0c21c294a4ff02353e5726d5ef1c21c39cb0d Mon Sep 17 00:00:00 2001 From: mat-1 Date: Sun, 28 Feb 2021 07:23:42 +0000 Subject: Compiled TS into JS --- build/index.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'build/index.js') diff --git a/build/index.js b/build/index.js index 3174e69..52e711c 100644 --- a/build/index.js +++ b/build/index.js @@ -6,8 +6,9 @@ Object.defineProperty(exports, "__esModule", { value: true }); exports.debug = void 0; const hypixel_1 = require("./hypixel"); const express_1 = __importDefault(require("express")); +const database_1 = require("./database"); const app = express_1.default(); -exports.debug = true; +exports.debug = false; app.use((req, res, next) => { if (process.env.key && req.headers.key !== process.env.key) // if a key is set in process.env and the header doesn't match return an error @@ -24,4 +25,7 @@ app.get('/player/:user', async (req, res) => { app.get('/player/:user/:profile', async (req, res) => { res.json(await hypixel_1.fetchMemberProfile(req.params.user, req.params.profile)); }); +app.get('/leaderboard/:name', async (req, res) => { + res.json(await database_1.fetchMemberLeaderboard(req.params.name)); +}); app.listen(8080, () => console.log('App started :)')); -- cgit