diff options
author | mat-1 <github@matdoes.dev> | 2021-02-28 07:23:42 +0000 |
---|---|---|
committer | mat-1 <github@matdoes.dev> | 2021-02-28 07:23:42 +0000 |
commit | 3fb0c21c294a4ff02353e5726d5ef1c21c39cb0d (patch) | |
tree | dee9c60e13ba2876b02791cc10d8d16b3bb6cc06 /build/index.js | |
parent | 6dadf95683a8b8574976c9d024b0b148521012f7 (diff) | |
download | skyblock-api-3fb0c21c294a4ff02353e5726d5ef1c21c39cb0d.tar.gz skyblock-api-3fb0c21c294a4ff02353e5726d5ef1c21c39cb0d.tar.bz2 skyblock-api-3fb0c21c294a4ff02353e5726d5ef1c21c39cb0d.zip |
Compiled TS into JS
Diffstat (limited to 'build/index.js')
-rw-r--r-- | build/index.js | 6 |
1 files changed, 5 insertions, 1 deletions
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 :)')); |