akf-forum/routes/admin.js

9 lines
379 B
JavaScript
Raw Normal View History

2022-03-21 23:53:22 +03:00
const { Router } = require("express")
2022-09-17 16:56:19 +03:00
const { BanModel,UserModel } = require("../models");
2022-03-21 23:53:22 +03:00
const app = Router();
2022-04-06 21:14:46 +03:00
app.get("/", async (req, res) => {
2022-08-29 16:16:44 +03:00
if (!req.user?.admin) return res.error(403, "You have not got permissions for view to this page.");
2022-09-17 16:56:19 +03:00
res.reply("admin",{bans: await BanModel.find({}), admins: await UserModel.find({admin: true})});
2022-04-03 21:01:55 +03:00
});
2022-08-29 16:16:44 +03:00
module.exports = app;