akf-forum/routes/admin.js

9 lines
249 B
JavaScript
Raw Normal View History

2022-03-21 23:53:22 +03:00
const { Router } = require("express")
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.");
res.reply("admin")
2022-04-03 21:01:55 +03:00
});
2022-08-29 16:16:44 +03:00
module.exports = app;