Update admin.js

This commit is contained in:
Akif Yüce 2022-03-31 01:01:32 +03:00 committed by GitHub
parent 13d3e3f553
commit a2d5056b8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ app.get("/", (req, res) => {
if (!req.session.loggedin) return res.redirect('/login');
const user = new User().getId(req.session.userid)
if (!user.admin) return error(res, 404, "You have not got permissions for view to this page.");
if (!user.admin) return error(res, 403, "You have not got permissions for view to this page.");
res.render("admin", { user, user2: false })
}
@ -20,7 +20,7 @@ app.post("/", (req, res) => {
const user = new User().getId(req.session.userid)
if (!user.admin) return error(res, 404, "You have not got permissions for view to this page.");
if (!user.admin) return error(res, 403, "You have not got permissions for view to this page.");
const user2 = new User().getId(req.body.userid)
if (!user2)
@ -36,4 +36,4 @@ app.post("/", (req, res) => {
});
module.exports = app;
module.exports = app;