diff options
author | LarsVomMars | 2021-02-01 15:44:01 +0100 |
---|---|---|
committer | LarsVomMars | 2021-02-01 15:44:01 +0100 |
commit | b01a04200deaad168342ba170a94dd15bad0ae79 (patch) | |
tree | bf303a2d3981de4bc74ecd29e1559e94984e020f /superadmin/index.js | |
parent | 099de3b0a7c4f57dfed65f41596e28fd36194024 (diff) |
just for the lulz
Diffstat (limited to 'superadmin/index.js')
-rw-r--r-- | superadmin/index.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/superadmin/index.js b/superadmin/index.js index 2518f97..9498327 100644 --- a/superadmin/index.js +++ b/superadmin/index.js @@ -27,4 +27,16 @@ app.get("/api/pull", checkSuperAdmin, (req, res) => { }); }); +app.post("/api/reset", checkSuperAdmin, async (req, res) => { + const { uid } = req.body; + if (!uid) return res.json({ success: false }); + try { + const pwd = await db.regenerateUser(uid); + return res.json({ success: true, uid, pwd }); + } catch (e) { + console.error(e); + return res.json({ success: false, e }); + } +}); + module.exports = app;
\ No newline at end of file |