aboutsummaryrefslogtreecommitdiff
path: root/superadmin/index.js
diff options
context:
space:
mode:
authorLarsVomMars2021-02-01 15:44:01 +0100
committerLarsVomMars2021-02-01 15:44:01 +0100
commitb01a04200deaad168342ba170a94dd15bad0ae79 (patch)
treebf303a2d3981de4bc74ecd29e1559e94984e020f /superadmin/index.js
parent099de3b0a7c4f57dfed65f41596e28fd36194024 (diff)
just for the lulz
Diffstat (limited to 'superadmin/index.js')
-rw-r--r--superadmin/index.js12
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