mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
9 lines
No EOL
249 B
JavaScript
9 lines
No EOL
249 B
JavaScript
const { Router } = require("express")
|
|
|
|
const app = Router();
|
|
|
|
app.get("/", async (req, res) => {
|
|
if (!req.user?.admin) return res.error(403, "You have not got permissions for view to this page.");
|
|
res.reply("admin")
|
|
});
|
|
module.exports = app; |